diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/qa/zip/testzipimpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/qa/zip/testzipimpl.cxx b/shell/qa/zip/testzipimpl.cxx index b2bec74a8230..8fe27d9caffb 100644 --- a/shell/qa/zip/testzipimpl.cxx +++ b/shell/qa/zip/testzipimpl.cxx @@ -49,7 +49,7 @@ TestZipImpl::~TestZipImpl() bool TestZipImpl::test_directory() { ZipFile::DirectoryPtr_t contents = zipFile.GetDirectory(); - vector<string> &stringVector = *contents.get(); + vector<string> &stringVector = *contents; sort(stringVector.begin(), stringVector.end()); return expectedContents == stringVector; } |