Skip to content
Snippets Groups Projects
Commit 9435af7d authored by Sébastien Villemot's avatar Sébastien Villemot Committed by Sébastien Villemot
Browse files

Fix compatibility issue with Bison 3.

Closes #570

(cherry picked from commit 96e973a0)
parent 407e802b
No related branches found
No related tags found
No related merge requests found
......@@ -42,19 +42,19 @@ class ParsingDriver;
do { \
if (N) \
{ \
(Current).begin = (Rhs)[1].begin; \
(Current).end = (Rhs)[N].end; \
(Current).begin = YYRHSLOC(Rhs, 1).begin; \
(Current).end = YYRHSLOC(Rhs, N).end; \
} \
else \
{ \
(Current).begin = (Current).end = (Rhs)[0].end; \
(Current).begin = (Current).end = YYRHSLOC(Rhs, 0).end; \
} \
driver.location = (Current); \
} while(false)
%}
%name-prefix="Dynare"
%name-prefix "Dynare"
%parse-param { ParsingDriver &driver }
%lex-param { ParsingDriver &driver }
......
......@@ -35,7 +35,7 @@ using namespace std;
class MacroDriver;
%}
%name-prefix="Macro"
%name-prefix "Macro"
%parse-param { MacroDriver &driver }
%parse-param { ostream &out }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment