mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-20 18:32:01 +00:00
making goto a keyword
This commit is contained in:
parent
24f9b63475
commit
2ec8ef4406
1 changed files with 2 additions and 1 deletions
3
lexer.c
3
lexer.c
|
@ -47,7 +47,8 @@ static const char *keywords_fg[] = {
|
|||
"switch", "case", "default",
|
||||
"struct", "union",
|
||||
"break", "continue",
|
||||
"typedef"
|
||||
"typedef",
|
||||
"goto"
|
||||
};
|
||||
static size_t num_keywords_fg = sizeof(keywords_fg) / sizeof(keywords_fg[0]);
|
||||
|
||||
|
|
Loading…
Reference in a new issue