]> git.saurik.com Git - bison.git/blobdiff - tests/actions.at
Workaround for SGI C++ compiler.
[bison.git] / tests / actions.at
index 2967427389364ec38bd8bc05ab29cc4ae4a299a6..87126e8893dc5b8cbf17a76ded39ab90998655fb 100644 (file)
@@ -1,5 +1,5 @@
 # Executing Actions.                               -*- Autotest -*-
-# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -336,8 +336,8 @@ AT_DATA_GRAMMAR([[input.y]],
 %{
 ]AT_LALR1_CC_IF([typedef yy::Location YYLTYPE;])
 [static int yylex (]AT_LEX_FORMALS[);
-static void yyerror (const char *msg);
-%}
+]AT_LALR1_CC_IF([], [static void yyerror (const char *msg);])
+[%}
 
 %type <ival> 'x' ';' thing line input
 
@@ -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 ();
 }
 ],