This commit was generated by cvs2svn to compensate for changes in r78460,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
Ruslan Ermilov 2001-06-19 06:43:49 +00:00
commit a52dffddd2

View file

@ -106,11 +106,11 @@ struct node {
virtual const char *type() = 0;
};
inline node::node() : next(0)
inline node::node() : next(0), last(0)
{
}
inline node::node(node *n) : next(n)
inline node::node(node *n) : next(n), last(0)
{
}