commit | b2141fc1d20e659810245ec6ca1c143c60e033ec | [log] [tgz] |
---|---|---|
author | Brandon Williams <bmwill@google.com> | Wed Jun 14 11:07:36 2017 -0700 |
committer | Junio C Hamano <gitster@pobox.com> | Thu Jun 15 12:56:22 2017 -0700 |
tree | 12230b8b41fc2786e74a95809a5c3c2256266ceb | |
parent | f1c985da05c136414c10f034cdc09bdb6939cb8f [diff] [blame] |
config: don't include config.h by default Stop including config.h by default in cache.h. Instead only include config.h in those files which require use of the config system. Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff --git a/apply.c b/apply.c index e6dbab2..5b44286 100644 --- a/apply.c +++ b/apply.c
@@ -8,6 +8,7 @@ */ #include "cache.h" +#include "config.h" #include "blob.h" #include "delta.h" #include "diff.h"