From 6a61b6b17ead27f659083cf5ce2faa5f63911ff6 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Sat, 30 Nov 2019 16:57:55 +0100 Subject: [PATCH] c++: improve typing * data/skeletons/lalr1.cc (yysyntax_error_): symbol_type::type_get returns a symbol_number_type (which is indeed an int). --- data/skeletons/lalr1.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/skeletons/lalr1.cc b/data/skeletons/lalr1.cc index 64ff81a3..121b524d 100644 --- a/data/skeletons/lalr1.cc +++ b/data/skeletons/lalr1.cc @@ -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