We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48866e5 commit 6fb0192Copy full SHA for 6fb0192
cpp/ql/test/library-tests/string_concat/strconcat.ql
@@ -1,8 +1,10 @@
1
import cpp
2
import semmle.code.cpp.commons.StringConcatenation
3
+import semmle.code.cpp.dataflow.new.DataFlow
4
5
from StringConcatenation s, Expr op, DataFlow::Node res
-where s.getLocation().getFile().getBaseName() = "concat.cpp"
6
-and op = s.getAnOperand()
7
-and res = s.getResultNode()
+where
+ s.getLocation().getFile().getBaseName() = "concat.cpp" and
8
+ op = s.getAnOperand() and
9
+ res = s.getResultNode()
10
select s, op, res
0 commit comments