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:
ru 2001-06-19 06:43:49 +00:00
commit fd067874e3

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)
{
}