Skip to content

Commit 42ee501

Browse files
committed
C++: Use the name without args
1 parent f932e51 commit 42ee501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/lib/semmle/code/cpp/dataflow/ExternalFlow.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ pragma[inline_late]
760760
private predicate funcHasQualifiedName(Function func, string namespace, string name) {
761761
exists(string nameWithoutArgs |
762762
parseAngles(name, nameWithoutArgs, _, "") and
763-
func.hasQualifiedName(namespace, name)
763+
func.hasQualifiedName(namespace, nameWithoutArgs)
764764
)
765765
}
766766

0 commit comments

Comments
 (0)