From: Elijah Newren Date: Sat, 14 Mar 2020 19:15:47 +0000 (+0000) Subject: oidset: remove unnecessary include X-Git-Tag: v2.27.0-rc0~161^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=757c2ba3e2b2b9ce2d3812cdf132dc08b901195b;p=thirdparty%2Fgit.git 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 Signed-off-by: Junio C Hamano --- 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" /**