From df2921b9011c9d5db0849d3095a7c600e1b498a6 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 5 Sep 2025 04:10:45 +0900 Subject: feat: skip "restrict" and "volatile" --- src/parse.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/parse.c') 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(); } -- cgit v1.2.3-70-g09d2