aboutsummaryrefslogtreecommitdiff
path: root/src/lexer.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2010-10-12 07:35:08 +0000
committerMike Buland <eichlan@xagasoft.com>2010-10-12 07:35:08 +0000
commit0981b9d6a12bd7aadbf9286459e033ac1a2ba910 (patch)
treefa461761086f182e43f94637a9c8df040333e8a4 /src/lexer.cpp
parent1ee5f374ed986333d5cdbbf41390f1c4c755a8e3 (diff)
downloadlibbu++-0981b9d6a12bd7aadbf9286459e033ac1a2ba910.tar.gz
libbu++-0981b9d6a12bd7aadbf9286459e033ac1a2ba910.tar.bz2
libbu++-0981b9d6a12bd7aadbf9286459e033ac1a2ba910.tar.xz
libbu++-0981b9d6a12bd7aadbf9286459e033ac1a2ba910.zip
Ok, libbu++ compiles again, the basic parser system is getting there, I think,
it's still a little tricky becasue you have to do the non-terminal prime seperation yourself (I forget what it's really called), but it's going quite well. After a few tweaks to the core of it, we should be able to do some math :)
Diffstat (limited to '')
-rw-r--r--src/lexer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lexer.cpp b/src/lexer.cpp
index c7a6fcb..af9a23f 100644
--- a/src/lexer.cpp
+++ b/src/lexer.cpp
@@ -13,7 +13,7 @@ Bu::Lexer::Token::Token() :
13{ 13{
14} 14}
15 15
16Bu::Lexer::Token::Token( int iToken ) : 16Bu::Lexer::Token::Token( Bu::Lexer::TokenType iToken ) :
17 iToken( iToken ) 17 iToken( iToken )
18{ 18{
19} 19}