Commit a1b23df58cb704a1ac3e0670a26c804d8a08ed2e

Patrick Steinhardt 2017-01-27T14:15:45

offmap: remove unused macro `git_offmap_insert2`

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/src/offmap.h b/src/offmap.h
index 0d0e512..4476cf7 100644
--- a/src/offmap.h
+++ b/src/offmap.h
@@ -45,16 +45,6 @@ typedef khash_t(off) git_offmap;
 		kh_val(h, __pos) = val; \
 	} } while (0)
 
-#define git_offmap_insert2(h, key, val, oldv, rval) do { \
-	khiter_t __pos = kh_put(off, h, key, &rval); \
-	if (rval >= 0) { \
-		if (rval == 0) { \
-			oldv = kh_val(h, __pos); \
-			kh_key(h, __pos) = key; \
-		} else { oldv = NULL; } \
-		kh_val(h, __pos) = val; \
-	} } while (0)
-
 #define git_offmap_delete(h, key) do { \
 	khiter_t __pos = git_offmap_lookup_index(h, key); \
 	if (git_offmap_valid_index(h, __pos)) \