diff options
author | ru <ru@FreeBSD.org> | 2001-06-19 06:43:49 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-06-19 06:43:49 +0000 |
commit | fd067874e33368e23e4e133b2eb58dfd1fdd6396 (patch) | |
tree | ccce6b7b28d92ed6f81287d2709ece57c9f5abcf /contrib | |
parent | 55d0338e2257702b65692daf5d46786f31e49493 (diff) | |
parent | 9ea23f4150d8e9a0b84050876c26239addf73c8c (diff) | |
download | FreeBSD-src-fd067874e33368e23e4e133b2eb58dfd1fdd6396.zip FreeBSD-src-fd067874e33368e23e4e133b2eb58dfd1fdd6396.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r78460,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/groff/src/roff/troff/node.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/groff/src/roff/troff/node.h b/contrib/groff/src/roff/troff/node.h index 3e5f615..1dc0718 100644 --- a/contrib/groff/src/roff/troff/node.h +++ b/contrib/groff/src/roff/troff/node.h @@ -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) { } |