Skip to content

Commit e235e04

Browse files
committed
C++: Fix getAnExpandedArgument
The fix was accidentially lost when rebasing the branch that introduced this predicate.
1 parent e850a8a commit e235e04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/lib/semmle/code/cpp/Compilation.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class Compilation extends @compilation {
9797
/**
9898
* Gets an expanded argument passed to the extractor on this invocation.
9999
*/
100-
string getAnExpandedArgument() { result = this.getArgument(_) }
100+
string getAnExpandedArgument() { result = this.getExpandedArgument(_) }
101101

102102
/**
103103
* Gets the `i`th expanded argument passed to the extractor on this

0 commit comments

Comments
 (0)