]> git.ipfire.org Git - thirdparty/git.git/commitdiff
oidset: remove unnecessary include
authorElijah Newren <newren@gmail.com>
Sat, 14 Mar 2020 19:15:47 +0000 (19:15 +0000)
committerJunio C Hamano <gitster@pobox.com>
Sun, 15 Mar 2020 22:44:25 +0000 (15:44 -0700)
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>
oidset.h

index c9d0f6d3cc8b99959d8637dcbf8ecb235021104e..931532679075817052ed1f6deabf565504b25142 100644 (file)
--- a/oidset.h
+++ b/oidset.h
@@ -1,7 +1,6 @@
 #ifndef OIDSET_H
 #define OIDSET_H
 
-#include "hashmap.h"
 #include "khash.h"
 
 /**