Skip to content

Commit

Permalink
Fix compiler error.
Browse files Browse the repository at this point in the history
  • Loading branch information
SharafMohamed committed Feb 12, 2025
1 parent 303de17 commit 9e99f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test-lexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ TEST_CASE("Test basic Lexer", "[Lexer]") {
Schema schema;
schema.add_variable(cVarSchema, -1);

ByteLexer lexer{initialize_lexer(std::move(schema.release_schema_ast_ptr())};
ByteLexer lexer{initialize_lexer(std::move(schema.release_schema_ast_ptr()))};

test_scanning_input(lexer, cTokenString1, cVarName);
test_scanning_input(lexer, cTokenString2, log_surgeon::cTokenUncaughtString);
Expand Down

0 comments on commit 9e99f40

Please sign in to comment.