diff options
Diffstat (limited to 'src/parse.c')
| -rw-r--r-- | src/parse.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/parse.c b/src/parse.c index 7ab244c..b6fa043 100644 --- a/src/parse.c +++ b/src/parse.c @@ -1956,9 +1956,11 @@ static Type* parse_declaration_specifiers(Parser* p) { // TODO next_token(p); } else if (tok->kind == TokenKind_keyword_restrict) { - unimplemented(); + // TODO + next_token(p); } else if (tok->kind == TokenKind_keyword_volatile) { - unimplemented(); + // TODO + next_token(p); } else if (tok->kind == TokenKind_keyword__Atomic) { unimplemented(); } |
