aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/parse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c
index aeb9c78..6443de2 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -1684,7 +1684,8 @@ static Type* parse_declaration_specifiers(Parser* p) {
}
// function-specifier
else if (tok->kind == TokenKind_keyword_inline) {
- unimplemented();
+ // TODO
+ next_token(p);
} else if (tok->kind == TokenKind_keyword__Noreturn) {
// TODO
next_token(p);