mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-22 18:51:24 +00:00
change the value of TOKEN_EOF
This commit is contained in:
parent
2eddc464d5
commit
c3f4b7153b
1 changed files with 5 additions and 1 deletions
6
lexer.h
6
lexer.h
|
@ -87,7 +87,11 @@ enum {
|
|||
TOKEN_WHITE,
|
||||
TOKEN_EOL,
|
||||
|
||||
TOKEN_EOF,
|
||||
/* if we add additional tokens before this, the exposed API
|
||||
* should not be broken anyway, but EOF/ERROR/... should
|
||||
* still be at the bottom
|
||||
*/
|
||||
TOKEN_EOF = 1024,
|
||||
|
||||
/* We use '< TOKEN_ERROR', so TOKEN_FATAL must come after it and any
|
||||
* other error related tokens as well
|
||||
|
|
Loading…
Reference in a new issue