C++: Use the name without args

This commit is contained in:
Mathias Vorreiter Pedersen
2024-07-30 11:18:24 +01:00
parent f932e515a7
commit 42ee501b96

View File

@@ -760,7 +760,7 @@ pragma[inline_late]
private predicate funcHasQualifiedName(Function func, string namespace, string name) {
exists(string nameWithoutArgs |
parseAngles(name, nameWithoutArgs, _, "") and
func.hasQualifiedName(namespace, name)
func.hasQualifiedName(namespace, nameWithoutArgs)
)
}