Skip to content

Commit

Permalink
fix github checks failure
Browse files Browse the repository at this point in the history
  • Loading branch information
SatyaRanjanDas-tomtom committed Jan 10, 2025
1 parent 8adcbd9 commit 54b90d6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cppparser/src/parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -1122,14 +1122,14 @@ exptype
: tknStatic [ZZLOG;] { $$ = STATIC; }
| tknExtern [ZZLOG;] { $$ = EXTERN; }
| tknExternC [ZZLOG;] { $$ = EXTERN_C; }
| tknInline [ZZLOG;] { $$ = INLINE; }
;

varattrib
: tknConst [ZZLOG;] { $$ = CONST; }
| tknVolatile [ZZLOG;] { $$ = VOLATILE; }
| tknMutable [ZZLOG;] { $$ = MUTABLE; }
| tknConstExpr [ZZLOG;] { $$ = CONST_EXPR; }
| tknInline [ZZLOG;] { $$ = INLINE; }
;

typeconverter
Expand Down Expand Up @@ -1444,7 +1444,6 @@ templatearglist

functype
: exptype [ZZLOG;] { $$ = $1; }
| tknInline [ZZLOG;] { $$ = INLINE; }
| tknVirtual [ZZLOG;] { $$ = VIRTUAL; }
| tknExplicit [ZZLOG;] { $$ = EXPLICIT; }
| tknFriend [ZZLOG;] { $$ = FRIEND; }
Expand Down

0 comments on commit 54b90d6

Please sign in to comment.