Don't bother to initialize values corresponding to empty or tombstone

keys.

llvm-svn: 41834
This commit is contained in:
Owen Anderson 2007-09-11 04:43:51 +00:00
parent f9203ab36a
commit d7a698afc5
1 changed files with 3 additions and 1 deletions

View File

@ -203,7 +203,9 @@ private:
else
for (size_t i = 0; i < other.NumBuckets; ++i) {
new (Buckets[i].first) KeyT(other.Buckets[i].first);
new (Buckets[i].second) ValueT(other.Buckets[i].second);
if (Buckets[i].first != getEmptyKey() &&
Buckets[i].first != getTombstoneKey())
new (Buckets[i].second) ValueT(other.Buckets[i].second);
}
NumBuckets = other.NumBuckets;
}