From 741eda1c7262bfb5c5d35b93232f54a7bc0d7e79 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Sat, 11 Nov 2023 23:33:02 +0100 Subject: [PATCH] Add missing comma Ooops. --- ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ast.c b/ast.c index 6916adf..e98b54f 100644 --- a/ast.c +++ b/ast.c @@ -279,7 +279,7 @@ static const char *closure_use_flags[] = { #define AST_MODIFIER_FLAGS \ AST_FLAG(MODIFIER_PUBLIC), \ AST_FLAG(MODIFIER_PROTECTED), \ - AST_FLAG(MODIFIER_PRIVATE) \ + AST_FLAG(MODIFIER_PRIVATE), \ AST_FLAG(MODIFIER_STATIC), \ AST_FLAG(MODIFIER_ABSTRACT), \ AST_FLAG(MODIFIER_FINAL), \