]> git.saurik.com Git - bison.git/commitdiff
Don't use locations in variant.yy.
authorAkim Demaille <demaille@gostai.com>
Wed, 22 Oct 2008 11:23:34 +0000 (06:23 -0500)
committerAkim Demaille <demaille@gostai.com>
Sat, 15 Nov 2008 10:26:58 +0000 (11:26 +0100)
* examples/variant.yy: Adjust to not using locations.

ChangeLog
examples/variant.yy

index 50ef9d0a60b45cedf1f362b61159d6350cceb583..2c0343d6616e3aa6e434fe28db4d7a89444241c8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-11-15  Akim Demaille  <demaille@gostai.com>
+
+       Don't use locations in variant.yy.
+       * examples/variant.yy: Adjust to not using locations.
+
 2008-11-15  Akim Demaille  <demaille@gostai.com>
 
        Comment changes.
index 74fb10920b4affaa35b794641835eeaa9b51ff3d..b1987cd2fdbd12b972c8af563bace7f2e57b92ff 100644 (file)
@@ -114,10 +114,9 @@ yylex (yy::parser::semantic_type* yylval)
 
 // Mandatory error function
 void
-yy::parser::error (const yy::parser::location_type& yylloc,
-                   const std::string& message)
+yy::parser::error (const std::string& message)
 {
-  std::cerr << yylloc << ": " << message << std::endl;
+  std::cerr << message << std::endl;
 }
 
 int