Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 667bb32 commit 50709b2Copy full SHA for 50709b2
1 file changed
cpp/ql/src/semmle/code/cpp/exprs/Call.qll
@@ -16,7 +16,7 @@ class Call extends Expr, NameQualifiableElement, TCall {
16
// ```
17
// So for the charpred for `Call` we include the requirement that if this is an instance of
18
// `@funbindexpr` it must be a _call_ to the function.
19
- Call() { this instanceof @funbindexpr implies iscall(underlyingElement(this), _) }
+ Call() { this instanceof @callexpr or iscall(underlyingElement(this), _) }
20
21
/**
22
* Gets the number of arguments (actual parameters) of this call. The count
0 commit comments