Skip to content

Commit ab4cb0a

Browse files
committed
Fix compiling
NP-1167
1 parent 76faf81 commit ab4cb0a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/cura-formulae-engine/parser/variable_or_fn_application_grammar_or_array_indexing_grammar.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ struct ApplyPropertyAccessExpr final : ApplyExpr
122122

123123
ast::ExprPtr apply(ast::ExprPtr&& object) override
124124
{
125-
return { std::make_unique<ast::PropertyAccessExpr>(std::move(object), property_name) };
125+
return { std::make_unique<ast::PropertyAccessExpr>(std::move(object), std::move(property_name)) };
126126
}
127127
};
128128

0 commit comments

Comments
 (0)