Skip to content

Commit a04883c

Browse files
authored
C++: Fix compilation.
1 parent b25f1fd commit a04883c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/src/semmle/code/cpp/models/implementations/StdContainer.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ private class StdSequenceContainerPush extends TaintFunction {
113113
this.getClassAndName("push_back") instanceof Array or
114114
this.getClassAndName(["push_back", "push_front"]) instanceof Deque or
115115
this.getClassAndName("push_front") instanceof ForwardList or
116-
this.getClassAndName("push_back") instanceof List or
116+
this.getClassAndName("push_back") instanceof List
117117
}
118118

119119
override predicate hasTaintFlow(FunctionInput input, FunctionOutput output) {

0 commit comments

Comments
 (0)