diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2015-10-22 14:43:30 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-22 11:12:38 -0700 |
commit | 4b7c50a184a900eef5bc077d93e72c1b8f147915 (patch) | |
tree | edc77a9e4d8a9eb6e3c3201904e2d1726948f97b /shallow.c | |
parent | a559263caead4cb8078b651f25f5b08a56cf406e (diff) | |
download | git-4b7c50a184a900eef5bc077d93e72c1b8f147915.tar.gz |
shallow: remove unused #include "sigchain.h"tk/sigchain-unnecessary-post-tempfile
After switching to use the tempfile module in commit 6e122b44
(setup_temporary_shallow(): use tempfile module), no declarations from
sigchain.h are used in read-cache.c anymore. Thus, remove the #include.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'shallow.c')
-rw-r--r-- | shallow.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -10,7 +10,6 @@ #include "diff.h" #include "revision.h" #include "commit-slab.h" -#include "sigchain.h" static int is_shallow = -1; static struct stat_validity shallow_stat; |