diff --git a/src/parse.cpp b/src/parse.cpp index d9e5010..ada62fc 100644 --- a/src/parse.cpp +++ b/src/parse.cpp @@ -50,7 +50,7 @@ std::vector tokenize_line(const std::string& line) } } - return std::move(tokens); + return tokens; } // Main parsing function @@ -115,7 +115,7 @@ std::vector parse_instructions(const std::string& code_arg) } - return std::move(instructions); + return instructions; } bool is_keyword(std::string str)