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:
Akim Demaille
2021-09-07 06:41:54 +02:00
parent c3a4686a03
commit 85f5e3b9d5
6 changed files with 28 additions and 21 deletions

View File

@@ -336,7 +336,7 @@ m4_define([b4_shared_declarations],
/// Convert a scanner token kind \a t to a symbol kind.
/// In theory \a t should be a token_kind_type, but character literals
/// are valid, yet not members of the token_type enum.
/// are valid, yet not members of the token_kind_type enum.
static symbol_kind_type yytranslate_ (int t);
]b4_parse_error_bmatch(
@@ -637,9 +637,9 @@ m4_if(b4_prefix, [yy], [],
]b4_parser_class[::syntax_error::~syntax_error () YY_NOEXCEPT YY_NOTHROW
{}
/*---------------.
| symbol kinds. |
`---------------*/
/*---------.
| symbol. |
`---------*/
]b4_token_ctor_if([], [b4_public_types_define([cc])])[