Skip to content

Commit 6fb0192

Browse files
committed
Updating test ql file and applying formatting.
1 parent 48866e5 commit 6fb0192

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import cpp
22
import semmle.code.cpp.commons.StringConcatenation
3+
import semmle.code.cpp.dataflow.new.DataFlow
34

45
from StringConcatenation s, Expr op, DataFlow::Node res
5-
where s.getLocation().getFile().getBaseName() = "concat.cpp"
6-
and op = s.getAnOperand()
7-
and res = s.getResultNode()
6+
where
7+
s.getLocation().getFile().getBaseName() = "concat.cpp" and
8+
op = s.getAnOperand() and
9+
res = s.getResultNode()
810
select s, op, res

0 commit comments

Comments
 (0)