Update cpp/ql/lib/semmle/code/cpp/exprs/Assignment.qll

Co-authored-by: Matan Merom <1010225+matan7890@users.noreply.github.com>
This commit is contained in:
Mathias Vorreiter Pedersen
2021-08-19 10:32:46 +02:00
committed by GitHub
parent f5c23c9c52
commit 01dfab2aec

View File

@@ -35,7 +35,7 @@ class Assignment extends Operation, @assign_expr {
* ```
* a = b;
* ```
* Note that `int a = b;` _not_ an `AssignExpr`. It is a `Variable`,
* Note that `int a = b;` is _not_ an `AssignExpr`. It is a `Variable`,
* and `b` can be obtained using `Variable.getInitializer()`.
*/
class AssignExpr extends Assignment, @assignexpr {