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 /apt-pkg/indexcopy.cc | |
parent | 6932831f2ace44eb3e586186ac848c8ca9b690da (diff) |
reorder includes: add <config.h> if needed and include it at first
Diffstat (limited to 'apt-pkg/indexcopy.cc')
-rw-r--r-- | apt-pkg/indexcopy.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apt-pkg/indexcopy.cc b/apt-pkg/indexcopy.cc index 31c577705..dcba78dce 100644 --- a/apt-pkg/indexcopy.cc +++ b/apt-pkg/indexcopy.cc @@ -10,7 +10,7 @@ ##################################################################### */ /*}}}*/ // Include Files /*{{{*/ -#include "indexcopy.h" +#include<config.h> #include <apt-pkg/error.h> #include <apt-pkg/progress.h> @@ -21,7 +21,6 @@ #include <apt-pkg/indexrecords.h> #include <apt-pkg/md5.h> #include <apt-pkg/cdrom.h> -#include <apti18n.h> #include <iostream> #include <sstream> @@ -30,6 +29,9 @@ #include <sys/types.h> #include <fcntl.h> #include <stdio.h> + +#include "indexcopy.h" +#include <apti18n.h> /*}}}*/ using namespace std; |