]> git.saurik.com Git - bison.git/commitdiff
tests: address g++-4.8 warnings.
authorAkim Demaille <akim@lrde.epita.fr>
Fri, 6 Jul 2012 09:07:32 +0000 (11:07 +0200)
committerAkim Demaille <akim@lrde.epita.fr>
Fri, 6 Jul 2012 09:11:28 +0000 (11:11 +0200)
list.yy: In function 'yy::parser::symbol_type yylex()':
list.yy:107:29: error: typedef 'token' locally defined but not used
  [-Werror=unused-local-typedefs]
   typedef yy::parser::token token;
                             ^

* tests/c++.at (AT_CHECK_VARIANTS): here.

tests/c++.at

index 9f70f15f670a2632f79593dcfb5aee6d7b485c61..155f2de602c9c71a09274124926d9c40207fa402 100644 (file)
@@ -127,7 +127,9 @@ yy::parser::token_type yylex(yy::parser::semantic_type* yylval,
                              yy::parser::location_type* yylloc)
 #endif
 {
+#ifndef USE_LEX_SYMBOL
   typedef yy::parser::token token;
+#endif
   typedef yy::parser::location_type location_type;
   static int stage = -1;
   ++stage;