summaryrefslogtreecommitdiffstats
path: root/src/solar.cpp
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2015-03-31 04:25:38 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2015-03-31 04:25:38 +0200
commita0cc8fcb087845096462b8f5790bdbc261d3f2a8 (patch)
tree083ec8b3b517ec9214644a87d7ecb7bbc08143b2 /src/solar.cpp
parent8b707351c72edb799195ea8c8423f34c72c5c46b (diff)
downloadsolar-a0cc8fcb087845096462b8f5790bdbc261d3f2a8.tar
solar-a0cc8fcb087845096462b8f5790bdbc261d3f2a8.zip
parser: rename token_t and value_t to parser_token_t and parser_value_t
Diffstat (limited to 'src/solar.cpp')
-rw-r--r--src/solar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/solar.cpp b/src/solar.cpp
index 975ea22..e0fbba0 100644
--- a/src/solar.cpp
+++ b/src/solar.cpp
@@ -48,7 +48,7 @@ bool read_grammar(const char *filename, parser_state_t *state) {
do {
int token;
- value_t value;
+ parser_value_t value;
token = lexer->lex(&value);
if (token < 0) {