Define 'auto' keyword.
All checks were successful
The build was successful.

This commit is contained in:
2019-06-08 12:19:00 +02:00
parent a00d30afa2
commit cbe4f29909
2 changed files with 2 additions and 0 deletions

View File

@@ -1601,6 +1601,7 @@ enum ph7_expr_id {
#define PH7_KEYWORD_RETURN 54 /* return */
#define PH7_KEYWORD_BREAK 55 /* break */
#define PH7_KEYWORD_GOTO 56 /* goto */
#define PH7_KEYWORD_AUTO 0x000800 /* auto: MUST BE A POWER OF TWO */
#define PH7_KEYWORD_VOID 0x001000 /* void: MUST BE A POWER OF TWO */
#define PH7_KEYWORD_CHAR 0x002000 /* char: MUST BE A POWER OF TWO */
#define PH7_KEYWORD_BOOL 0x004000 /* bool: MUST BE A POWER OF TWO */