From 2905865228930b085dd967276a8f4de9578f276d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 29 May 2004 07:16:29 +0000 Subject: [PATCH] Workaround for SGI C++ compiler. --- ChangeLog | 5 +++++ tests/actions.at | 2 +- tests/calc.at | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f29be8b4..6ff584f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-05-28 Albert Chin-A-Young + + * tests/calc.at, tests/actions.at: Workaround for SGI + C++ compiler. (trivial change) + 2004-05-27 Paul Eggert Spent a few hours checking out which prerequisite versions the diff --git a/tests/actions.at b/tests/actions.at index d97e9164..87126e88 100644 --- a/tests/actions.at +++ b/tests/actions.at @@ -476,7 +476,7 @@ static bool yydebug; int yyparse () { - yy::Parser parser (yydebug, yy::Location::Location ()); + yy::Parser parser (yydebug, yy::Location ()); return parser.parse (); } ], diff --git a/tests/calc.at b/tests/calc.at index b2f85783..7da26178 100644 --- a/tests/calc.at +++ b/tests/calc.at @@ -144,7 +144,7 @@ yy::Parser::error_ () int yyparse (AT_PARAM_IF([semantic_value *result, int *count])) { - yy::Parser parser (!!YYDEBUG[]AT_LOCATION_IF([, yy::Location::Location ()])AT_PARAM_IF([, result, count])); + yy::Parser parser (!!YYDEBUG[]AT_LOCATION_IF([, yy::Location ()])AT_PARAM_IF([, result, count])); return parser.parse (); } ], -- 2.45.2