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

Co-Authored-By: Jonas Jensen <jbj@github.com>
This commit is contained in:
Geoffrey White
2019-11-14 12:35:15 +00:00
committed by GitHub
parent b1dfc60422
commit acefadda8c

View File

@@ -4,7 +4,7 @@ import semmle.code.cpp.exprs.BitwiseOperation
/**
* A non-overloaded binary assignment operation, including `=`, `+=`, `&=`,
* etc. A C++ overloaded `operator` looks syntactically identical but is instead
* etc. A C++ overloaded assignment operation looks syntactically identical but is instead
* a `FunctionCall`.
*
* This is an abstract root QL class for all (non-overloaded) assignments.