diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-20 14:41:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-20 14:41:18 +0100 |
commit | c751a9edc5115c5c4c8e8e858d53c4676a904436 (patch) | |
tree | f1d3bc516d355260ad3eac5f3cbc3997c6041e74 | |
parent | 66b4832d69f82af816e1aee212ab23bc00974eaa (diff) |
remove unused PushFront
-rw-r--r-- | cosv/inc/cosv/dirchain.hxx | 5 | ||||
-rw-r--r-- | cosv/source/storage/dirchain.cxx | 12 |
2 files changed, 0 insertions, 17 deletions
diff --git a/cosv/inc/cosv/dirchain.hxx b/cosv/inc/cosv/dirchain.hxx index d4954975..d531d0ce 100644 --- a/cosv/inc/cosv/dirchain.hxx +++ b/cosv/inc/cosv/dirchain.hxx @@ -80,11 +80,6 @@ class DirectoryChain const char * i_sPath, bool i_bPathIsAlwaysDir = false, const char * i_sDelimiter = Delimiter() ); - void PushFront( - const String & i_sName ); - void PushFront( - const DirectoryChain & - i_sPath ); void PushBack( const String & i_sName ); void PushBack( diff --git a/cosv/source/storage/dirchain.cxx b/cosv/source/storage/dirchain.cxx index 52683c25..7eb1be85 100644 --- a/cosv/source/storage/dirchain.cxx +++ b/cosv/source/storage/dirchain.cxx @@ -81,18 +81,6 @@ DirectoryChain::Set( const char * i_sSubPath, } void -DirectoryChain::PushFront( const String & i_sName ) -{ - aPath.insert( aPath.begin(), i_sName ); -} - -void -DirectoryChain::PushFront( const DirectoryChain & i_sPath ) -{ - aPath.insert( aPath.begin(), i_sPath.Begin(), i_sPath.End() ); -} - -void DirectoryChain::PushBack( const String & i_sName ) { aPath.push_back(i_sName); |