Skip to content

Commit

Permalink
Add missing comma
Browse files Browse the repository at this point in the history
Ooops.
  • Loading branch information
nikic committed Nov 11, 2023
1 parent c132c5d commit 741eda1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ast.c
Original file line number Diff line number Diff line change
Expand Up @@ -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), \
Expand Down

0 comments on commit 741eda1

Please sign in to comment.