Browse Source

Merge branch 'rb/hashmap-h-compilation-fix'

Code clean-up.

* rb/hashmap-h-compilation-fix:
  hashmap.h: remove unused variable
maint
Junio C Hamano 7 years ago
parent
commit
922ffec6fe
  1. 3
      hashmap.h

3
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) static inline void hashmap_enable_item_counting(struct hashmap *map)
{ {
void *item;
unsigned int n = 0; unsigned int n = 0;
struct hashmap_iter iter; struct hashmap_iter iter;


@ -408,7 +407,7 @@ static inline void hashmap_enable_item_counting(struct hashmap *map)
return; return;


hashmap_iter_init(map, &iter); hashmap_iter_init(map, &iter);
while ((item = hashmap_iter_next(&iter))) while (hashmap_iter_next(&iter))
n++; n++;


map->do_count_items = 1; map->do_count_items = 1;

Loading…
Cancel
Save