From dfe1a005aface9a7767a8abac41b30f7dc6030fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Thu, 22 Nov 2018 11:46:36 +0100 Subject: [PATCH] Bison bug has been fixed in 3.2.2 --- src/DynareBison.yy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/DynareBison.yy b/src/DynareBison.yy index 165d0d3a..c42ea117 100644 --- a/src/DynareBison.yy +++ b/src/DynareBison.yy @@ -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; using tuple_4strings = tuple; }