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 {
4141 * - "&" if capture-by-reference is the default for implicit captures.
4242 * - "=" if capture-by-value is the default for implicit captures.
4343 */
44- string getDefaultCaptureMode ( ) { lambdas ( underlyingElement ( this ) , result , _) }
44+ string getDefaultCaptureMode ( ) { lambdas ( underlyingElement ( this ) , result , _, _ ) }
4545
4646 /**
4747 * Holds if the return type (of the call operator of the resulting object) was explicitly specified.
4848 */
49- predicate returnTypeIsExplicit ( ) { lambdas ( underlyingElement ( this ) , _, true ) }
49+ predicate returnTypeIsExplicit ( ) { lambdas ( underlyingElement ( this ) , _, true , _ ) }
5050
5151 /**
5252 * 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