Bison bug has been fixed in 3.2.2

issue#70
Sébastien Villemot 2018-11-22 11:46:36 +01:00
parent fb883bbfb0
commit dfe1a005af
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 3 additions and 1 deletions

View File

@ -37,7 +37,9 @@ class ParsingDriver;
/* Bison 3.2 passes semantic types through a macro, and commas in parametric
types are interpreted as macro arguments, leading to a compilation error.
Use type aliases to workaround the problem. */
Use type aliases to workaround the problem.
This bug has been fixed in Bison 3.2.2, so we can remove the workaround
at some point. */
using pair_2strings = pair<string,string>;
using tuple_4strings = tuple<string,string,string,string>;
}