]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/depcache.h
implement MarkAndSweep in cc instead of header
[apt.git] / apt-pkg / depcache.h
index f9a13dec51763fbaf2b0bbab915be7488eb3489c..5554e1a696d54c7c0364dff7540d3ffb910f0072 100644 (file)
@@ -396,19 +396,8 @@ class pkgDepCache : protected pkgCache::Namespace
     *  \param rootFunc A predicate that returns \b true for packages
     *  that should be added to the root set.
     */
-   bool MarkAndSweep(InRootSetFunc &rootFunc)
-   {
-     return MarkRequired(rootFunc) && Sweep();
-   }
-
-   bool MarkAndSweep()
-   {
-     std::auto_ptr<InRootSetFunc> f(GetRootSetFunc());
-     if(f.get() != NULL)
-       return MarkAndSweep(*f.get());
-     else
-       return false;
-   }
+   bool MarkAndSweep(InRootSetFunc &rootFunc);
+   bool MarkAndSweep();
 
    /** \name State Manipulators
     */