diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-09-13 10:09:00 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-09-13 10:09:00 +0200 |
commit | ea54214002c09eeb4dd498d97a564471ec9993c5 (patch) | |
tree | 76a6a0cbfb9c8c00f6568b1e1a5b0febd9a1df7c /ftparchive/cachedb.cc | |
parent | 6932831f2ace44eb3e586186ac848c8ca9b690da (diff) |
reorder includes: add <config.h> if needed and include it at first
Diffstat (limited to 'ftparchive/cachedb.cc')
-rw-r--r-- | ftparchive/cachedb.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ftparchive/cachedb.cc b/ftparchive/cachedb.cc index 7e4c2e9fe..a1d70f912 100644 --- a/ftparchive/cachedb.cc +++ b/ftparchive/cachedb.cc @@ -10,9 +10,8 @@ ##################################################################### */ /*}}}*/ // Include Files /*{{{*/ -#include "cachedb.h" +#include <config.h> -#include <apti18n.h> #include <apt-pkg/error.h> #include <apt-pkg/md5.h> #include <apt-pkg/sha1.h> @@ -21,6 +20,9 @@ #include <apt-pkg/configuration.h> #include <netinet/in.h> // htonl, etc + +#include <apti18n.h> +#include "cachedb.h" /*}}}*/ // CacheDB::ReadyDB - Ready the DB2 /*{{{*/ |