mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
c++: avoid using the obsolete names
* data/skeletons/c++.m4: Don't define obsolete identifiers in the case of glr2.cc. Let's not start with technical debt. * data/skeletons/glr2.cc, data/skeletons/lalr1.cc, * data/skeletons/variant.hh: Use token_kind_type, not token_type. * tests/c++.at, tests/local.at: Use value_type, not semantic_type.
This commit is contained in:
@@ -969,7 +969,7 @@ AT_DATA_GRAMMAR([[input.yy]],
|
||||
%code
|
||||
{
|
||||
#include <cstdlib>
|
||||
int yylex (yy::parser::semantic_type *);
|
||||
int yylex (yy::parser::value_type *);
|
||||
}
|
||||
|
||||
%define parse.error verbose
|
||||
@@ -1013,7 +1013,7 @@ AT_DATA_SOURCE([scan.cc],
|
||||
|
||||
// 'a': valid item, 's': syntax error, 'l': lexical error.
|
||||
int
|
||||
yylex (yy::parser::semantic_type *lval)
|
||||
yylex (yy::parser::value_type *lval)
|
||||
{
|
||||
switch (int res = getchar ())
|
||||
{
|
||||
|
||||
@@ -378,7 +378,7 @@ m4_pushdef([AT_TOKEN],
|
||||
|
||||
|
||||
m4_pushdef([AT_YYSTYPE],
|
||||
[AT_CXX_IF([AT_NAMESPACE[::]AT_PARSER_CLASS[::semantic_type]],
|
||||
[AT_CXX_IF([AT_NAMESPACE[::]AT_PARSER_CLASS[::value_type]],
|
||||
[AT_API_PREFIX[STYPE]])])
|
||||
m4_pushdef([AT_YYLTYPE],
|
||||
[AT_CXX_IF([AT_NAMESPACE[::]AT_PARSER_CLASS[::location_type]],
|
||||
|
||||
Reference in New Issue
Block a user