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 | 5c8c13887952c112566c4145173a93d7d39c2dd6 (patch) | |
tree | 78a2ebea69bc69059e1a3a86047d1085345bd43e /cosv | |
parent | 5a7bd335ef32121c2fd500e9688dd6bd4fb23662 (diff) |
remove unused PushFront
Diffstat (limited to 'cosv')
-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 3475ff87fd15..e76e4945fd6e 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 c9c0d24f5f8f..21b0f66ab7ee 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); |