Skip to content

Commit

Permalink
fix: 🐛 Debug statement acidentally pushed to main, reverted
Browse files Browse the repository at this point in the history
  • Loading branch information
alinalihassan committed Mar 2, 2022
2 parents c79fe53 + c79fe53 commit 809c238
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ int main(int argc, char **argv) {
auto lexer = std::make_unique<Lexer>(source, options->file.substr(options->file.find_last_of("/\\") + 1));
lexer->ScanAll();)

print(DEBUG, "TOKENS: \n");
for (const auto &tok: lexer->getTokens())
print("Token: {}\n", tok->Dump());
// print(DEBUG, "TOKENS: \n");
// for (const auto &tok: lexer->getTokens())
// print("Token: {}\n", tok->Dump());

// Parser
TIMEIT("Parsing",
Expand Down

0 comments on commit 809c238

Please sign in to comment.