mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-21 02:40:56 +00:00
improve the warning
This commit is contained in:
parent
b1175eabfc
commit
51ba2c49d6
1 changed files with 2 additions and 1 deletions
3
parser.c
3
parser.c
|
@ -521,7 +521,8 @@ static bool parser_sy_pop(parser_t *parser, shunt *sy)
|
|||
if (opts_standard != COMPILER_GMQCC) {
|
||||
/* this error doesn't need to make us bail out */
|
||||
(void)!parsewarning(parser, WARN_EXTENSIONS,
|
||||
"accessing array-field members of an entity without parenthesis");
|
||||
"accessing array-field members of an entity without parenthesis\n"
|
||||
" -> this is an extension from -std=gmqcc");
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue