summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorwl <wl>2010-12-15 05:57:38 +0000
committerwl <wl>2010-12-15 05:57:38 +0000
commitc23a04b471aacda89679c5aa52d5118ebe93c59c (patch)
treee9e4697f0f9a78a8337fb99969636c257571cda8 /src
parenta979dbdf5dfea847c9294647e9532f91282dc5b8 (diff)
downloadgroff-c23a04b471aacda89679c5aa52d5118ebe93c59c.tar.gz
Remove unused code.
* src/roff/troff/node.cpp, src/roff/troff/node.h (space_node::space_node): Remove unused constructor.
Diffstat (limited to 'src')
-rw-r--r--src/roff/troff/node.cpp5
-rw-r--r--src/roff/troff/node.h3
2 files changed, 1 insertions, 7 deletions
diff --git a/src/roff/troff/node.cpp b/src/roff/troff/node.cpp
index ab9c0ce8..0f22857f 100644
--- a/src/roff/troff/node.cpp
+++ b/src/roff/troff/node.cpp
@@ -3212,11 +3212,6 @@ space_node::space_node(hunits nn, color *c, node *p)
{
}
-space_node::space_node(hunits nn, color *c, statem *s, int pop, node *p)
-: node(p, s, pop), n(nn), set(0), was_escape_colon(0), col(c)
-{
-}
-
space_node::space_node(hunits nn, int s, int flag, color *c, statem *st,
int pop, node *p)
: node(p, st, pop), n(nn), set(s), was_escape_colon(flag), col(c)
diff --git a/src/roff/troff/node.h b/src/roff/troff/node.h
index 9850be21..641f5c81 100644
--- a/src/roff/troff/node.h
+++ b/src/roff/troff/node.h
@@ -1,6 +1,6 @@
// -*- C++ -*-
/* Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001, 2002, 2003, 2004,\
- 2006, 2009
+ 2006, 2009, 2010
Free Software Foundation, Inc.
Written by James Clark (jjc@jclark.com)
@@ -170,7 +170,6 @@ protected:
color *col; /* for grotty */
space_node(hunits, int, int, color *, statem *, int, node * = 0);
public:
- space_node(hunits, color *, statem *, int, node * = 0);
space_node(hunits, color *, node * = 0);
#if 0
~space_node();