[PATCH] cat-file: remove unnecessary #include
From: Alexander Kuleshov <hidden>
Date: 2016-06-15 23:03:27
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Alexander Kuleshov <hidden>
Date: 2016-06-15 23:03:27
Subsystem:
the rest · Maintainer:
Linus Torvalds
"cache.h" is already included in "builtin.h" It appeared at e83c51 (Initial revision of "git", the information manager from hell., 8 Apr 2005) and used cache.c API (get_sha1_hex and read_sha1_file). After this in the commit f81dae (Builtin git-cat-file., ) was included "builtin.h", which already includes "cache.h", so we no need to include it in the cat-file.c Signed-off-by: Alexander Kuleshov <redacted> --- builtin/cat-file.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/builtin/cat-file.c b/builtin/cat-file.c
index 750b5a2..2e6aaa1 100644
--- a/builtin/cat-file.c
+++ b/builtin/cat-file.c@@ -3,7 +3,6 @@ * * Copyright (C) Linus Torvalds, 2005 */ -#include "cache.h" #include "builtin.h" #include "parse-options.h" #include "userdiff.h"
--
2.2.1.532.g168b885.dirty