summaryrefslogtreecommitdiff
path: root/src/token.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/token.h')
-rw-r--r--src/token.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/token.h b/src/token.h
index 8d7dc20..072a96b 100644
--- a/src/token.h
+++ b/src/token.h
@@ -31,7 +31,8 @@ public:
31 31
32 tEndOfInput, 32 tEndOfInput,
33 33
34 tUninitialized 34 tUninitialized,
35 tComputedValue
35 }; 36 };
36 37
37 Token(); 38 Token();
@@ -52,5 +53,6 @@ public:
52}; 53};
53 54
54Bu::Formatter &operator<<( Bu::Formatter &f, Token::Type eType ); 55Bu::Formatter &operator<<( Bu::Formatter &f, Token::Type eType );
56Bu::Formatter &operator<<( Bu::Formatter &f, const Token &t );
55 57
56#endif 58#endif