From: David Kalnischkies Date: Sat, 19 Jun 2010 07:13:33 +0000 (+0200) Subject: fix the gcc warning about the initialisation order of variables caused X-Git-Tag: 0.8.0~9^2~22^2~32 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/a5de4117b60617ace639fb1e09e8903279185c2e fix the gcc warning about the initialisation order of variables caused by moving Policy to public again (and therefore after SrcList) --- diff --git a/apt-pkg/cachefile.cc b/apt-pkg/cachefile.cc index 01598386c..964c5bd8b 100644 --- a/apt-pkg/cachefile.cc +++ b/apt-pkg/cachefile.cc @@ -28,7 +28,7 @@ // --------------------------------------------------------------------- /* */ pkgCacheFile::pkgCacheFile() : Map(NULL), Cache(NULL), DCache(NULL), - Policy(NULL), SrcList(NULL) + SrcList(NULL), Policy(NULL) { } /*}}}*/