* data/lalr1.cc: Adjust includes.
* data/stack.hh (push, pop): Use push_back and pop_back.
(operator []): Access vector from the end.
m4_define([b4_shared_declarations],
[b4_percent_code_get([[requires]])[
]b4_parse_assert_if([# include <cassert>])[
m4_define([b4_shared_declarations],
[b4_percent_code_get([[requires]])[
]b4_parse_assert_if([# include <cassert>])[
# include <iostream>
# include <stdexcept>
# include <string>]b4_defines_if([[
# include <iostream>
# include <stdexcept>
# include <string>]b4_defines_if([[
# b4_stack_define
# ---------------
m4_define([b4_stack_define],
# b4_stack_define
# ---------------
m4_define([b4_stack_define],
-[[ template <class T, class S = std::deque<T> >
+[[ template <class T, class S = std::vector<T> >
T&
operator [] (unsigned int i)
{
T&
operator [] (unsigned int i)
{
+ return seq_[seq_.size () - 1 - i];
}
inline
const T&
operator [] (unsigned int i) const
{
}
inline
const T&
operator [] (unsigned int i) const
{
+ return seq_[seq_.size () - 1 - i];
}
inline
void
push (const T& t)
{
}
inline
void
push (const T& t)
{
pop (unsigned int n = 1)
{
for (; n; --n)
pop (unsigned int n = 1)
{
for (; n; --n)
]b4_cpp_guard_open([b4_dir_prefix[]stack.hh])[
]b4_cpp_guard_open([b4_dir_prefix[]stack.hh])[
]b4_namespace_open[
]b4_stack_define[
]b4_namespace_open[
]b4_stack_define[