Skip to content

Commit 6733997

Browse files
committed
C++: autoformat DataFlowPrivate
1 parent 78b8d11 commit 6733997

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

cpp/ql/lib/semmle/code/cpp/ir/dataflow/internal/DataFlowPrivate.qll

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,10 @@ class IndirectionPosition extends TIndirectionPosition {
135135
}
136136

137137
newtype TPosition =
138-
TDirectPosition(int index) { exists(any(CallInstruction c).getArgument(index))} or
139-
TIndirectionPosition(int index) { exists(ReadSideEffectInstruction instr | instr.getIndex() = index) }
138+
TDirectPosition(int index) { exists(any(CallInstruction c).getArgument(index)) } or
139+
TIndirectionPosition(int index) {
140+
exists(ReadSideEffectInstruction instr | instr.getIndex() = index)
141+
}
140142

141143
private newtype TReturnKind =
142144
TNormalReturnKind() or

0 commit comments

Comments
 (0)