You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.c:24521:14: warning: initializer element is not computable at load time [-Wpedantic]
24521 | = {yyssp, yytoken};
| ^~~~~
parser.c:24521:21: warning: initializer element is not computable at load time [-Wpedantic]
24521 | = {yyssp, yytoken};
| ^~~~~~~
The reason is
bison/data/skeletons/yacc.c
Lines 2008 to 2009 in 25b3d0e
which leads to a generation of
and therefore raises
Changing the generated code as follows:
fixes the code, but sadly that is not easily replaced by defining some macros.
The text was updated successfully, but these errors were encountered: