File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
cpp/ql/lib/semmle/code/cpp/exprs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ class LambdaExpression extends Expr, @lambdaexpr {
41
41
* - "&" if capture-by-reference is the default for implicit captures.
42
42
* - "=" if capture-by-value is the default for implicit captures.
43
43
*/
44
- string getDefaultCaptureMode ( ) { lambdas ( underlyingElement ( this ) , result , _) }
44
+ string getDefaultCaptureMode ( ) { lambdas ( underlyingElement ( this ) , result , _, _ ) }
45
45
46
46
/**
47
47
* Holds if the return type (of the call operator of the resulting object) was explicitly specified.
48
48
*/
49
- predicate returnTypeIsExplicit ( ) { lambdas ( underlyingElement ( this ) , _, true ) }
49
+ predicate returnTypeIsExplicit ( ) { lambdas ( underlyingElement ( this ) , _, true , _ ) }
50
50
51
51
/**
52
52
* Gets the function which will be invoked when the resulting object is called.
You can’t perform that action at this time.
0 commit comments