mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-05 01:11:00 +00:00
definite -> last keyword; testcase updated too
This commit is contained in:
parent
0b6637cc67
commit
5319caaaea
3 changed files with 4 additions and 4 deletions
2
parser.c
2
parser.c
|
@ -2822,7 +2822,7 @@ static bool parse_qualifiers(parser_t *parser, bool with_local, int *cvq, bool *
|
|||
{ "inline", AST_FLAG_INLINE },
|
||||
{ "eraseable", AST_FLAG_ERASEABLE },
|
||||
{ "accumulate", AST_FLAG_ACCUMULATE },
|
||||
{ "definite", AST_FLAG_FINAL_DECL }
|
||||
{ "last", AST_FLAG_FINAL_DECL }
|
||||
};
|
||||
|
||||
*cvq = CV_NONE;
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
float here;
|
||||
final float here;
|
||||
[[last]] float here;
|
||||
float here;
|
|
@ -1,5 +1,5 @@
|
|||
I: final.qc
|
||||
D: final keyword
|
||||
I: last.qc
|
||||
D: last attribute
|
||||
T: -fail
|
||||
C: -std=gmqcc
|
||||
F: -no-defs
|
Loading…
Reference in a new issue