]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/pkgsystem.cc
cleanup headers and especially #includes everywhere
[apt.git] / apt-pkg / pkgsystem.cc
index f61c140facec1926a4f27a472b1866ac824abdee..ee6c3f4ecc0a658e16ebc538c53728a72d56f837 100644 (file)
@@ -13,7 +13,6 @@
 #include<config.h>
 
 #include <apt-pkg/pkgsystem.h>
-#include <apt-pkg/policy.h>
 #include <cassert>
 #include <cstring>
                                                                        /*}}}*/
@@ -26,11 +25,11 @@ unsigned long pkgSystem::GlobalListLen = 0;
 // System::pkgSystem - Constructor                                     /*{{{*/
 // ---------------------------------------------------------------------
 /* Add it to the global list.. */
-pkgSystem::pkgSystem()
+pkgSystem::pkgSystem() : Label(NULL), VS(NULL)
 {
    assert(GlobalListLen < sizeof(SysList)/sizeof(*SysList));
    SysList[GlobalListLen] = this;
-   GlobalListLen++;
+   ++GlobalListLen;
 }
                                                                        /*}}}*/
 // System::GetSystem - Get the named system                            /*{{{*/