mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-30 06:21:45 +00:00
Let's not have + and - as sole token, always allow ++ and -- to become operators independent of the noops flag
This commit is contained in:
parent
b457bfec2a
commit
e3acdcf0a9
1 changed files with 2 additions and 0 deletions
2
lexer.c
2
lexer.c
|
@ -1076,8 +1076,10 @@ int lex_do(lex_file *lex)
|
|||
*/
|
||||
switch (ch)
|
||||
{
|
||||
/*
|
||||
case '+':
|
||||
case '-':
|
||||
*/
|
||||
case '*':
|
||||
case '/':
|
||||
case '<':
|
||||
|
|
Loading…
Reference in a new issue