codeql/cpp-all
2.1.1
For other CodeQL resources, including tutorials and examples, see the CodeQL documentation
.
Gets the update expression of this ‘for’ statement.
For example, for
for (i = 0; i < 10; i++) { j++; }
the result is i++.
i++
Does not hold if the update expression is omitted, as in
for (i = 0; i < 10;) { i++; }
Expr getUpdate()