We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea7e3b5 commit e21f6d3Copy full SHA for e21f6d3
1 file changed
scripts/generate_standard_library_models/cpp/queries/libraryObjectModel.ql
@@ -9,6 +9,6 @@ where
9
not v.getName().matches("\\_%") and
10
// Restrict to declarations in `std` namespace as the global namespace in a real database
11
// includes many objects outside the C/C++ standard library.
12
- declInStdNamespace(v) and
+ declInVisibleStdNamespace(v) and
13
if hasExternalLinkage(v) then linkage = "external" else linkage = "internal"
14
select getStandard(), v.getFile().getBaseName(), "std", v.getName(), v.getType().toString(), linkage
0 commit comments