summaryrefslogtreecommitdiff
path: root/cosv
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-16 23:45:13 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-17 14:05:13 +0100
commit522dfdf1bc329e281d40d31f8f969898cd0f4f3d (patch)
treec4ad0e948ea6388bf5f7dc766687d2c8088bb1e0 /cosv
parent198c00162650806a36bcfc50c00c9c951acfffb1 (diff)
throw out some unused code
Diffstat (limited to 'cosv')
-rw-r--r--cosv/inc/cosv/streamstr.hxx2
-rw-r--r--cosv/source/strings/streamstr.cxx7
2 files changed, 0 insertions, 9 deletions
diff --git a/cosv/inc/cosv/streamstr.hxx b/cosv/inc/cosv/streamstr.hxx
index 8fad751373aa..53fc00a09454 100644
--- a/cosv/inc/cosv/streamstr.hxx
+++ b/cosv/inc/cosv/streamstr.hxx
@@ -216,8 +216,6 @@ class StreamStr : public bostream
char i_cToRemove );
void strip_back(
char i_cToRemove );
- void strip_frontback(
- char i_cToRemove );
void strip_front_whitespace(); /// removes space, tab and crlf.
void strip_back_whitespace();
void strip_frontback_whitespace();
diff --git a/cosv/source/strings/streamstr.cxx b/cosv/source/strings/streamstr.cxx
index 009bacff43f3..6d051f9b87d0 100644
--- a/cosv/source/strings/streamstr.cxx
+++ b/cosv/source/strings/streamstr.cxx
@@ -581,13 +581,6 @@ StreamStr::strip_back(char i_cToRemove)
}
void
-StreamStr::strip_frontback(char i_cToRemove)
-{
- strip_front(i_cToRemove);
- strip_back(i_cToRemove);
-}
-
-void
StreamStr::strip_front_whitespace()
{
const_iterator it = begin();