]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/depcache.cc
C++11: Switch from auto_ptr to unique_ptr
[apt.git] / apt-pkg / depcache.cc
index 02f61bf13ba28d6528795caf55a11200c47e15d4..92b07390868cf40ad2c8fc95b27fc51e51089fb1 100644 (file)
@@ -2010,7 +2010,7 @@ bool pkgDepCache::MarkAndSweep(InRootSetFunc &rootFunc)
 }
 bool pkgDepCache::MarkAndSweep()
 {
-   std::auto_ptr<InRootSetFunc> f(GetRootSetFunc());
+   std::unique_ptr<InRootSetFunc> f(GetRootSetFunc());
    if(f.get() != NULL)
       return MarkAndSweep(*f.get());
    else