Merge pull request #1915 from zcbenz/common-h-before-config-h

The "common.h" should be included before "config.h".
This commit is contained in:
Vicent Martí 2013-10-28 04:38:08 -07:00
commit a1efa5960d
3 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,4 @@
#include "common.h"
#include "repository.h" #include "repository.h"
#include "fileops.h" #include "fileops.h"
#include "config.h" #include "config.h"

View File

@ -1,4 +1,5 @@
#include "git2/ignore.h" #include "git2/ignore.h"
#include "common.h"
#include "ignore.h" #include "ignore.h"
#include "attr.h" #include "attr.h"
#include "path.h" #include "path.h"

View File

@ -10,6 +10,7 @@
#include "git2/oid.h" #include "git2/oid.h"
#include "git2/net.h" #include "git2/net.h"
#include "common.h"
#include "config.h" #include "config.h"
#include "repository.h" #include "repository.h"
#include "remote.h" #include "remote.h"