Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2020-03-14 22:15:47 +0300
committerJunio C Hamano <gitster@pobox.com>2020-03-16 01:44:25 +0300
commit757c2ba3e2b2b9ce2d3812cdf132dc08b901195b (patch)
treeab09ff25b8ffd5352aa5f91d64dea9358c5d82c4 /oidset.h
parent4cd1cf31efed9b16db5035c377bfa222f5272458 (diff)
oidset: remove unnecessary include
When commit 8b2f8cbcb1 ("oidset: use khash", 2018-10-04) moved from using oidmap to khash, it replaced the oidmap.h include with both one for hashmap.h and khash.h. Since the hashmap.h header is unnecessary, and the point of the patch was to switch from hashmap (used by oidmap) to khash.h, remove the unneccessary include. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'oidset.h')
-rw-r--r--oidset.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/oidset.h b/oidset.h
index c9d0f6d3cc..9315326790 100644
--- a/oidset.h
+++ b/oidset.h
@@ -1,7 +1,6 @@
#ifndef OIDSET_H
#define OIDSET_H
-#include "hashmap.h"
#include "khash.h"
/**