diff options
Diffstat (limited to 'cosv')
-rw-r--r-- | cosv/inc/cosv/dirchain.hxx | 2 | ||||
-rw-r--r-- | cosv/source/storage/dirchain.cxx | 9 |
2 files changed, 0 insertions, 11 deletions
diff --git a/cosv/inc/cosv/dirchain.hxx b/cosv/inc/cosv/dirchain.hxx index e76e4945fd6e..c36c574cdf5a 100644 --- a/cosv/inc/cosv/dirchain.hxx +++ b/cosv/inc/cosv/dirchain.hxx @@ -85,8 +85,6 @@ class DirectoryChain void PushBack( const DirectoryChain & i_sPath ); - void PopFront( - uintt i_nCount = 1 ); void PopBack( uintt i_nCount = 1 ); diff --git a/cosv/source/storage/dirchain.cxx b/cosv/source/storage/dirchain.cxx index 21b0f66ab7ee..22697688442d 100644 --- a/cosv/source/storage/dirchain.cxx +++ b/cosv/source/storage/dirchain.cxx @@ -93,15 +93,6 @@ DirectoryChain::PushBack( const DirectoryChain & i_sPath ) } void -DirectoryChain::PopFront( uintt i_nCount ) -{ - if (i_nCount <= aPath.size()) - aPath.erase( aPath.begin(), aPath.begin() + i_nCount ); - else - aPath.erase( aPath.begin(), aPath.end() ); -} - -void DirectoryChain::PopBack( uintt i_nCount ) { if (i_nCount <= aPath.size()) |