Skip to content

Commit 54b90d6

Browse files
fix github checks failure
1 parent 8adcbd9 commit 54b90d6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cppparser/src/parser.y

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1122,14 +1122,14 @@ exptype
11221122
: tknStatic [ZZLOG;] { $$ = STATIC; }
11231123
| tknExtern [ZZLOG;] { $$ = EXTERN; }
11241124
| tknExternC [ZZLOG;] { $$ = EXTERN_C; }
1125+
| tknInline [ZZLOG;] { $$ = INLINE; }
11251126
;
11261127

11271128
varattrib
11281129
: tknConst [ZZLOG;] { $$ = CONST; }
11291130
| tknVolatile [ZZLOG;] { $$ = VOLATILE; }
11301131
| tknMutable [ZZLOG;] { $$ = MUTABLE; }
11311132
| tknConstExpr [ZZLOG;] { $$ = CONST_EXPR; }
1132-
| tknInline [ZZLOG;] { $$ = INLINE; }
11331133
;
11341134

11351135
typeconverter
@@ -1444,7 +1444,6 @@ templatearglist
14441444

14451445
functype
14461446
: exptype [ZZLOG;] { $$ = $1; }
1447-
| tknInline [ZZLOG;] { $$ = INLINE; }
14481447
| tknVirtual [ZZLOG;] { $$ = VIRTUAL; }
14491448
| tknExplicit [ZZLOG;] { $$ = EXPLICIT; }
14501449
| tknFriend [ZZLOG;] { $$ = FRIEND; }

0 commit comments

Comments
 (0)