diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2010-06-19 09:13:33 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2010-06-19 09:13:33 +0200 |
commit | a5de4117b60617ace639fb1e09e8903279185c2e (patch) | |
tree | 65acd7a20a85c13cdaf4f33f0d0ff03d500ea1a3 /apt-pkg/cachefile.cc | |
parent | 1019948cea2e6adbd4b0df3f07b52c90187b1a05 (diff) |
fix the gcc warning about the initialisation order of variables caused
by moving Policy to public again (and therefore after SrcList)
Diffstat (limited to 'apt-pkg/cachefile.cc')
-rw-r--r-- | apt-pkg/cachefile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
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) { } /*}}}*/ |