]> git.saurik.com Git - bison.git/commitdiff
stack::size instead of stack::height.
authorAkim Demaille <demaille@gostai.com>
Tue, 21 Oct 2008 23:04:46 +0000 (18:04 -0500)
committerAkim Demaille <demaille@gostai.com>
Mon, 3 Nov 2008 20:50:53 +0000 (21:50 +0100)
* data/lalr1.cc (stack::height): Rename as...
(stack::size): this.
Fix the output type.
Comment changes.

ChangeLog
data/lalr1.cc

index a7e2b729272b082b75ad6d7226146bd674e2f7ce..2c8de9ebde4ed374a35b8264034bd0e5c5ba61cf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-11-03  Akim Demaille  <demaille@gostai.com>
+
+       stack::size instead of stack::height.
+       * data/lalr1.cc (stack::height): Rename as...
+       (stack::size): this.
+       Fix the output type.
+       Comment changes.
+
 2008-11-03  Akim Demaille  <demaille@gostai.com>
 
        Use variants to support objects as semantic values.
index de2c1defb06cec3fc121aa77b193a8b5ef4de8ea..cf44d1f4cb02a07b04975e57d5c297915d3604b8 100644 (file)
@@ -897,7 +897,7 @@ b4_error_verbose_if([, yytoken])[));
        }
 
        /* Pop the current state because it cannot handle the error token.  */
-       if (yystate_stack_.height () == 1)
+       if (yystate_stack_.size () == 1)
        YYABORT;
 
        yyerror_range[0] = yylocation_stack_[0];
@@ -940,7 +940,7 @@ b4_error_verbose_if([, yytoken])[));
     /* Do not reclaim the symbols of the rule which action triggered
        this YYABORT or YYACCEPT.  */
     yypop_ (yylen);
-    while (yystate_stack_.height () != 1)
+    while (yystate_stack_.size () != 1)
       {
        yydestruct_ ("Cleanup: popping",
                   yystos_[yystate_stack_[0]],
@@ -1235,17 +1235,17 @@ b4_copyright([Stack handling for Bison parsers in C++],
     }
 
     inline
-    unsigned int
-    height () const
+    typename S::size_type
+    size () const
     {
       return seq_.size ();
     }
 
     inline const_iterator begin () const { return seq_.rbegin (); }
-    inline const_iterator end () const { return seq_.rend (); }
+    inline const_iterator end ()   const { return seq_.rend ();   }
 
   private:
-
+    /// The wrapped container.
     S seq_;
   };