summaryrefslogtreecommitdiff
path: root/Token.h
diff options
context:
space:
mode:
Diffstat (limited to 'Token.h')
-rw-r--r--Token.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Token.h b/Token.h
index 1ff528a..8f20b2e 100644
--- a/Token.h
+++ b/Token.h
@@ -31,7 +31,6 @@ enum {
};
union TokenValue {
- char *s;
char c;
int i;
double d;
@@ -43,6 +42,7 @@ typedef struct Token {
unsigned int line;
unsigned int column;
union TokenValue v;
+ char *s;
} Token;
void token_free(Token *tok);