Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'rb/hashmap-h-compilation-fix' into maint
author
Junio C Hamano
<gitster@pobox.com>
Thu, 22 Mar 2018 21:24:15 +0000
(14:24 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Thu, 22 Mar 2018 21:24:15 +0000
(14:24 -0700)
Code clean-up.
* rb/hashmap-h-compilation-fix:
hashmap.h: remove unused variable
hashmap.h
patch
|
blob
|
history
raw
(from parent 1:
9bcb489
)
diff --git
a/hashmap.h
b/hashmap.h
index 7ce79f3f72c144063b56f44368ad00c34e6aa786..d375d9cce779952057e3c5dc6340edd12fb3f99d 100644
(file)
--- a/
hashmap.h
+++ b/
hashmap.h
@@
-400,7
+400,6
@@
static inline void hashmap_disable_item_counting(struct hashmap *map)
*/
static inline void hashmap_enable_item_counting(struct hashmap *map)
{
- void *item;
unsigned int n = 0;
struct hashmap_iter iter;
@@
-408,7
+407,7
@@
static inline void hashmap_enable_item_counting(struct hashmap *map)
return;
hashmap_iter_init(map, &iter);
- while (
(item = hashmap_iter_next(&iter)
))
+ while (
hashmap_iter_next(&iter
))
n++;
map->do_count_items = 1;