dbghelp: Remove an "#if 1" preprocessor directive.
This commit is contained in:
parent
1f99a11f57
commit
74b0f6b4ad
|
@ -358,7 +358,7 @@ void hash_table_destroy(struct hash_table* ht)
|
|||
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",
|
||||
ht->num_elts, ht->num_buckets, mean, min, variance, max);
|
||||
#if 1
|
||||
|
||||
for (i = 0; i < ht->num_buckets; i++)
|
||||
{
|
||||
for (len = 0, elt = ht->buckets[i]; elt; elt = elt->next) len++;
|
||||
|
@ -372,7 +372,6 @@ void hash_table_destroy(struct hash_table* ht)
|
|||
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt)
|
||||
|
|
Loading…
Reference in New Issue