Skip to content

Commit e21f6d3

Browse files
committed
Add missing update
1 parent ea7e3b5 commit e21f6d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate_standard_library_models/cpp/queries/libraryObjectModel.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ where
99
not v.getName().matches("\\_%") and
1010
// Restrict to declarations in `std` namespace as the global namespace in a real database
1111
// includes many objects outside the C/C++ standard library.
12-
declInStdNamespace(v) and
12+
declInVisibleStdNamespace(v) and
1313
if hasExternalLinkage(v) then linkage = "external" else linkage = "internal"
1414
select getStandard(), v.getFile().getBaseName(), "std", v.getName(), v.getType().toString(), linkage

0 commit comments

Comments
 (0)