diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-06-29 21:48:22 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2024-06-29 21:59:59 +0300 |
commit | b21e05a2e32e36ae9cc9826acf98084ca4b52d7d (patch) | |
tree | 20d654fb0156f50e150944fc8108a3cada8ca6ec /contrib/tools/bison/src/gram.h | |
parent | 0cf48e974f5542c3e65398c01b9b6baf8aa6c260 (diff) | |
download | ydb-b21e05a2e32e36ae9cc9826acf98084ca4b52d7d.tar.gz |
Update contrib/tools/bison to 3.3.2
6215035f251de2d87363064fb4f07a2b14a3b4c8
Diffstat (limited to 'contrib/tools/bison/src/gram.h')
-rw-r--r-- | contrib/tools/bison/src/gram.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/contrib/tools/bison/src/gram.h b/contrib/tools/bison/src/gram.h index 4ecf4bf2b5..83dd8aacf7 100644 --- a/contrib/tools/bison/src/gram.h +++ b/contrib/tools/bison/src/gram.h @@ -1,7 +1,7 @@ /* Data definitions for internal representation of Bison's input. - Copyright (C) 1984, 1986, 1989, 1992, 2001-2007, 2009-2015, 2018 Free - Software Foundation, Inc. + Copyright (C) 1984, 1986, 1989, 1992, 2001-2007, 2009-2015, 2018-2019 + Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -196,6 +196,11 @@ typedef struct bool useful; bool is_predicate; + /* Counts of the numbers of expected conflicts for this rule, or -1 if none + given. */ + int expected_sr_conflicts; + int expected_rr_conflicts; + const char *action; location action_location; } rule; |