]> git.saurik.com Git - apt.git/commitdiff
fix the gcc warning about the initialisation order of variables caused
authorDavid Kalnischkies <kalnischkies@gmail.com>
Sat, 19 Jun 2010 07:13:33 +0000 (09:13 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Sat, 19 Jun 2010 07:13:33 +0000 (09:13 +0200)
by moving Policy to public again (and therefore after SrcList)

apt-pkg/cachefile.cc

index 01598386c9627a5ba0c06f4cc6b14084e353513f..964c5bd8bc9ad486472ea3854947bac4fc809874 100644 (file)
@@ -28,7 +28,7 @@
 // ---------------------------------------------------------------------
 /* */
 pkgCacheFile::pkgCacheFile() : Map(NULL), Cache(NULL), DCache(NULL),
-                               Policy(NULL), SrcList(NULL)
+                               SrcList(NULL), Policy(NULL)
 {
 }
                                                                        /*}}}*/