Commit 74b0f6b4 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

dbghelp: Remove an "#if 1" preprocessor directive.

parent 1f99a11f
...@@ -358,7 +358,7 @@ void hash_table_destroy(struct hash_table* ht) ...@@ -358,7 +358,7 @@ void hash_table_destroy(struct hash_table* ht)
variance = (double)sq / ht->num_buckets - mean * mean; variance = (double)sq / ht->num_buckets - mean * mean;
FIXME("STATS: elts[num:%-4u size:%u mean:%f] buckets[min:%-4u variance:%+f max:%-4u]\n", FIXME("STATS: elts[num:%-4u size:%u mean:%f] buckets[min:%-4u variance:%+f max:%-4u]\n",
ht->num_elts, ht->num_buckets, mean, min, variance, max); ht->num_elts, ht->num_buckets, mean, min, variance, max);
#if 1
for (i = 0; i < ht->num_buckets; i++) for (i = 0; i < ht->num_buckets; i++)
{ {
for (len = 0, elt = ht->buckets[i]; elt; elt = elt->next) len++; for (len = 0, elt = ht->buckets[i]; elt; elt = elt->next) len++;
...@@ -372,7 +372,6 @@ void hash_table_destroy(struct hash_table* ht) ...@@ -372,7 +372,6 @@ void hash_table_destroy(struct hash_table* ht)
} }
#endif #endif
#endif
} }
void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt) void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment