]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/pkgsystem.cc
cleanup headers and especially #includes everywhere
[apt.git] / apt-pkg / pkgsystem.cc
index 6dd2d3ee4df348eab8e2e05c3f3d5beff22126be..ee6c3f4ecc0a658e16ebc538c53728a72d56f837 100644 (file)
@@ -10,8 +10,9 @@
    ##################################################################### */
                                                                        /*}}}*/
 // Include Files                                                       /*{{{*/
+#include<config.h>
+
 #include <apt-pkg/pkgsystem.h>
-#include <apt-pkg/policy.h>
 #include <cassert>
 #include <cstring>
                                                                        /*}}}*/
@@ -24,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                            /*{{{*/