summaryrefslogtreecommitdiff
path: root/src/token.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/token.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/token.cpp b/src/token.cpp
index c591e6a..1eaa92a 100644
--- a/src/token.cpp
+++ b/src/token.cpp
@@ -99,6 +99,7 @@ Bu::Formatter &operator<<( Bu::Formatter &f, Token::Type eType )
99 case Token::tString: return f << "str"; 99 case Token::tString: return f << "str";
100 case Token::tEndOfLine: return f << "eol"; 100 case Token::tEndOfLine: return f << "eol";
101 case Token::tEndOfInput: return f << "eoi"; 101 case Token::tEndOfInput: return f << "eoi";
102 case Token::tNegate: return f << "neg";
102 103
103 default: return f << "???"; 104 default: return f << "???";
104 } 105 }