aboutsummaryrefslogtreecommitdiff
path: root/src/lexer.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lexer.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lexer.h b/src/lexer.h
index e8a17b5..2cb5f51 100644
--- a/src/lexer.h
+++ b/src/lexer.h
@@ -29,9 +29,10 @@ namespace Bu
29 29
30 template<class t> 30 template<class t>
31 Token( TokenType iToken, const t &v ) : 31 Token( TokenType iToken, const t &v ) :
32 iToken( iToken ), 32 iToken( iToken )//,
33 vExtra( v ) 33// vExtra( v )
34 { 34 {
35 vExtra = v;
35 } 36 }
36 TokenType iToken; 37 TokenType iToken;
37 Bu::Variant vExtra; 38 Bu::Variant vExtra;