Skip to content
Snippets Groups Projects
Commit 4508328c authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

inline now implies no_mask

Rev: src/language.y:1.7
parent acc38d4d
Branches
Tags
No related merge requests found
......@@ -404,7 +404,7 @@ modifier: F_NO_MASK { $$ = ID_NOMASK; }
| F_PUBLIC { $$ = ID_PUBLIC; }
| F_VARARGS { $$ = ID_VARARGS; }
| F_PROTECTED { $$ = ID_PROTECTED; }
| F_INLINE { $$ = ID_INLINE; }
| F_INLINE { $$ = ID_INLINE | ID_NOMASK; }
;
modifiers: modifier_list { $$=current_modifiers=$1; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment