Browse Source

fix the gcc warning about the initialisation order of variables caused
by moving Policy to public again (and therefore after SrcList)

David Kalnischkies 16 years ago
parent
commit
a5de4117b6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apt-pkg/cachefile.cc

+ 1 - 1
apt-pkg/cachefile.cc

@@ -28,7 +28,7 @@
 // ---------------------------------------------------------------------
 /* */
 pkgCacheFile::pkgCacheFile() : Map(NULL), Cache(NULL), DCache(NULL),
-				Policy(NULL), SrcList(NULL)
+				SrcList(NULL), Policy(NULL)
 {
 }
 									/*}}}*/