Ver código fonte

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

David Kalnischkies 16 anos atrás
pai
commit
a5de4117b6
1 arquivos alterados com 1 adições e 1 exclusões
  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)
 {
 }
 									/*}}}*/