Update qldoc for the Access class

The access class does not capture function accesses that are part of a function call expression.
This updates makes that explicit
This commit is contained in:
Remco Vermeulen
2021-09-01 15:30:33 +02:00
committed by GitHub
parent dccdc3be5a
commit ffd2a388a9

View File

@@ -9,7 +9,7 @@ import semmle.code.cpp.Enum
private import semmle.code.cpp.dataflow.EscapesTree
/**
* A C/C++ access expression. This refers to a function, variable, or enum constant.
* A C/C++ access expression. This refers to a function (excluding function references in function call expressions), variable, or enum constant.
*/
class Access extends Expr, NameQualifiableElement, @access {
// As `@access` is a union type containing `@routineexpr` (which describes function accesses