Skip to content

Commit

Permalink
Fixed implementation for grouped expression visit function.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Sep 26, 2024
1 parent 8b29178 commit 6d40baa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast/expression/GroupedExpression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
#include <memory>

DynamicObject GroupedExpression::visit(SymbolTable& symbols) {
return std::move(this->expression->visit(symbols));
return this->expression->visit(symbols);
}

0 comments on commit 6d40baa

Please sign in to comment.