Line 924 reads:
yypush_ ("Shifting", static_cast (yyn), YY_MOVE (yyla));]b4_lac_if([[
Line 855 does not use staticcast:
YYCDEBUG << "Entering state " << int (yystack[0].state) << '\n';
It should be:
YYCDEBUG << "Entering state " << staticcast (yystack[0].state) << '\n';
Line 1437 does not use staticcast:
*yycdebug << ' ' << int (i->state);
It should be:
*yycdebug_ << ' ' << static_cast (i->state);
Line 924 reads: yypush_ ("Shifting", static_cast (yyn), YY_MOVE (yyla));]b4_lac_if([[
Line 855 does not use staticcast: YYCDEBUG << "Entering state " << int (yystack[0].state) << '\n'; It should be: YYCDEBUG << "Entering state " << staticcast (yystack [0].state) << '\n';
Line 1437 does not use staticcast: *yycdebug << ' ' << int (i->state); It should be: *yycdebug_ << ' ' << static_cast (i->state);