From 4508328cf3fc5461ae5d24e1cf42ca93d1ba85c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Mon, 20 Nov 1995 17:07:29 +0100 Subject: [PATCH] inline now implies no_mask Rev: src/language.y:1.7 --- src/language.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/language.y b/src/language.y index 460a06cdb8..23dd5d1376 100644 --- a/src/language.y +++ b/src/language.y @@ -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; } -- GitLab