c++: improve typing

* data/skeletons/lalr1.cc (yysyntax_error_): symbol_type::type_get
returns a symbol_number_type (which is indeed an int).
This commit is contained in:
Akim Demaille
2019-11-30 16:57:55 +01:00
parent a4bf7cdf9e
commit 6a61b6b17e

View File

@@ -1330,7 +1330,7 @@ b4_error_verbose_if([state_type yystate, const symbol_type& yyla],
*/
if (!yyla.empty ())
{
int yytoken = yyla.type_get ();
symbol_number_type yytoken = yyla.type_get ();
yyarg[yycount++] = yytname_[yytoken];]b4_lac_if([[
#if ]b4_api_PREFIX[DEBUG