We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef0c7be commit 2f649c7Copy full SHA for 2f649c7
1 file changed
include/cura-formulae-engine/ast/fn_application_expr.h
@@ -23,7 +23,7 @@ struct FnApplicationExpr final : Expr
23
std::vector<ExprPtr> args;
24
std::vector<KeywordArg> kwargs;
25
26
- FnApplicationExpr(ExprPtr fn, std::vector<ExprPtr> args, std::vector<KeywordArg> kwargs = {})
+ FnApplicationExpr(ExprPtr fn, std::vector<ExprPtr>&& args, std::vector<KeywordArg>&& kwargs = {})
27
: fn(std::move(fn))
28
, args(std::move(args))
29
, kwargs(std::move(kwargs))
0 commit comments