diff options
author | Kirill Smelkov <kirr@mns.spb.ru> | 2014-02-24 20:21:42 +0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-20 15:04:32 -0700 |
commit | 5acabd84a6656a4f568f0e934cc9e1b344ed39d4 (patch) | |
tree | 9d03d31c735ea4c5e9560c2d1bb7a49fbd5d1300 /tree-diff.c | |
parent | 9bc0619655dfd183eb5d0d47b4d63a511acd5c64 (diff) | |
download | git-5acabd84a6656a4f568f0e934cc9e1b344ed39d4.tar.gz |
tree-diff: show_path prototype is not needed anymore
We moved all action-taking code below show_path() in recent HEAD~~
(tree-diff: move all action-taking code out of compare_tree_entry).
Signed-off-by: Kirill Smelkov <kirr@mns.spb.ru>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'tree-diff.c')
-rw-r--r-- | tree-diff.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tree-diff.c b/tree-diff.c index 58e790a5ee..73fa9beab0 100644 --- a/tree-diff.c +++ b/tree-diff.c @@ -6,9 +6,6 @@ #include "diffcore.h" #include "tree.h" -static void show_path(struct strbuf *base, struct diff_options *opt, - struct tree_desc *t1, struct tree_desc *t2); - /* * Compare two tree entries, taking into account only path/S_ISDIR(mode), * but not their sha1's. |