Merge branch 'rb/hashmap-h-compilation-fix'
Code clean-up. * rb/hashmap-h-compilation-fix: hashmap.h: remove unused variable
This commit is contained in:
commit
922ffec6fe
@ -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…
Reference in New Issue
Block a user