Skip to content

Commit a38fefe

Browse files
committed
CPP: Fix trailing space.
1 parent 1561363 commit a38fefe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/src/Likely Bugs/Likely Typos/inconsistentLoopDirection.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import semmle.code.cpp.dataflow.DataFlow
2020
predicate candidateForStmt(ForStmt forStmt, Variable v, CrementOperation update, RelationalOperation rel) {
2121
update = forStmt.getUpdate() and
2222
update.getAnOperand() = v.getAnAccess() and
23-
rel = forStmt.getCondition()
23+
rel = forStmt.getCondition()
2424
}
2525

2626
predicate illDefinedDecrForStmt( ForStmt forstmt, Variable v, Expr initialCondition, Expr terminalCondition ) {

0 commit comments

Comments
 (0)