diff options
Diffstat (limited to 'src/token.cpp')
-rw-r--r-- | src/token.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/token.cpp b/src/token.cpp index 019e54d..5b0e6fe 100644 --- a/src/token.cpp +++ b/src/token.cpp | |||
@@ -59,6 +59,7 @@ Bu::Formatter &operator<<( Bu::Formatter &f, Token::Type eType ) | |||
59 | case Token::tMinus: return f << "-"; | 59 | case Token::tMinus: return f << "-"; |
60 | case Token::tDivide: return f << "/"; | 60 | case Token::tDivide: return f << "/"; |
61 | case Token::tMultiply: return f << "*"; | 61 | case Token::tMultiply: return f << "*"; |
62 | case Token::tModulus: return f << "%"; | ||
62 | case Token::tOpenParen: return f << "("; | 63 | case Token::tOpenParen: return f << "("; |
63 | case Token::tCloseParen: return f << ")"; | 64 | case Token::tCloseParen: return f << ")"; |
64 | case Token::tEquals: return f << "="; | 65 | case Token::tEquals: return f << "="; |