aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/parse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c
index a9ecbe8..078e4d5 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -2283,7 +2283,8 @@ static Type* parse_specifier_qualifier_list(Parser* p) {
} else if (tok->kind == TokenKind_keyword_restrict) {
unimplemented();
} else if (tok->kind == TokenKind_keyword_volatile) {
- unimplemented();
+ // TODO
+ next_token(p);
} else if (tok->kind == TokenKind_keyword__Atomic) {
unimplemented();
}