diff options
author | Brandon Williams <bmwill@google.com> | 2017-06-14 20:07:36 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-15 21:56:22 +0200 |
commit | b2141fc1d20e659810245ec6ca1c143c60e033ec (patch) | |
tree | 12230b8b41fc2786e74a95809a5c3c2256266ceb /color.c | |
parent | config: remove git_config_iter (diff) | |
download | git-b2141fc1d20e659810245ec6ca1c143c60e033ec.tar.xz git-b2141fc1d20e659810245ec6ca1c143c60e033ec.zip |
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>
Diffstat (limited to 'color.c')
-rw-r--r-- | color.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,4 +1,5 @@ #include "cache.h" +#include "config.h" #include "color.h" static int git_use_color_default = GIT_COLOR_AUTO; |