Skip to content

Commit cad079d

Browse files
committed
format lexer
1 parent 49b9b7d commit cad079d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lexer.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ bool Lex::Add::operator()(Token const& t, std::vector<std::string>& tks) const {
3333
if (static_cast<unsigned long>(t.id()) == symbol_table::i_) {
3434
return true;
3535
}
36-
tks.push_back(symbol_table::token_types_r_.at(static_cast<unsigned long>(t.id())));
36+
tks.push_back(
37+
symbol_table::token_types_r_.at(static_cast<unsigned long>(t.id())));
3738
return true;
3839
}
3940

0 commit comments

Comments
 (0)