]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/orderlist.h
use std-algorithms instead of manual loops to avoid overflow warning
[apt.git] / apt-pkg / orderlist.h
index 29ef79b84f3ba21d99a777863d060808e320d13f..7b35b295504e8c3a427650149815be8889d9d42c 100644 (file)
@@ -24,7 +24,7 @@
 class pkgDepCache;
 class pkgOrderList : protected pkgCache::Namespace
 {
-   void *d;
+   void * const d;
    protected:
 
    pkgDepCache &Cache;   
@@ -122,7 +122,7 @@ class pkgOrderList : protected pkgCache::Namespace
 
    int Score(PkgIterator Pkg);
 
-   pkgOrderList(pkgDepCache *Cache);
+   explicit pkgOrderList(pkgDepCache *Cache);
    virtual ~pkgOrderList();
 };