diff options
author | arcadia-devtools <arcadia-devtools@yandex-team.ru> | 2022-02-09 20:52:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 15:58:17 +0300 |
commit | 1d6cd820856d7a70d8be542a226815b5c26d7285 (patch) | |
tree | c083effaea2f3d4b4d0612d90b48a0651f2937f6 /contrib | |
parent | 1db1a68d1cac3536b6c8e72ccbb25a265292e4d6 (diff) | |
download | ydb-1d6cd820856d7a70d8be542a226815b5c26d7285.tar.gz |
intermediate changes
ref:0ed7372a70d6b618fa5eea96758beac0150df5d3
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/tools/bison/bison/data/yacc.c | 6 | ||||
-rw-r--r-- | contrib/tools/bison/bison/src/scan-skel.c | 5 |
2 files changed, 6 insertions, 5 deletions
diff --git a/contrib/tools/bison/bison/data/yacc.c b/contrib/tools/bison/bison/data/yacc.c index 8a7058e637..c18a9350cf 100644 --- a/contrib/tools/bison/bison/data/yacc.c +++ b/contrib/tools/bison/bison/data/yacc.c @@ -1055,9 +1055,9 @@ yy_lac (yytype_int16 *yyesa, yytype_int16 **yyes, null, do not copy; instead, return the length of what the result would have been. */ #ifdef __cplusplus -# define YY_FALLTHROUGH [[fallthrough]] +# define BISON_FALLTHROUGH [[fallthrough]] #else -# define YY_FALLTHROUGH +# define BISON_FALLTHROUGH #endif static YYSIZE_T yytnamerr (char *yyres, const char *yystr) @@ -1077,7 +1077,7 @@ yytnamerr (char *yyres, const char *yystr) case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; - YY_FALLTHROUGH; + BISON_FALLTHROUGH; default: if (yyres) yyres[yyn] = *yyp; diff --git a/contrib/tools/bison/bison/src/scan-skel.c b/contrib/tools/bison/bison/src/scan-skel.c index f16cdab3ef..1e116da14d 100644 --- a/contrib/tools/bison/bison/src/scan-skel.c +++ b/contrib/tools/bison/bison/src/scan-skel.c @@ -42,10 +42,11 @@ #endif /* %if-c++-only */ +#define BISON_FALLTHROUGH [[fallthrough]] /* %endif */ /* %if-c-only */ - +#define BISON_FALLTHROUGH /* %endif */ /* %if-c-only */ @@ -1618,7 +1619,7 @@ static int yy_get_next_buffer (void) /* Reset buffer status. */ skel_restart(skel_in ); - /*FALLTHROUGH*/ + BISON_FALLTHROUGH; case EOB_ACT_END_OF_FILE: { |