diff options
Diffstat (limited to 'cosv')
-rw-r--r-- | cosv/inc/cosv/streamstr.hxx | 2 | ||||
-rw-r--r-- | cosv/source/strings/streamstr.cxx | 7 |
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(); |