forked from OSchip/llvm-project
Remove unnecessary condtional assignment. The next line ignores the result of the assignment with the same condition.
llvm-svn: 175042
This commit is contained in:
parent
19690538d3
commit
8b3af04c56
|
@ -493,7 +493,6 @@ private:
|
|||
if (KeyInfoT::isEqual(ThisBucket->first, EmptyKey)) {
|
||||
// If we've already seen a tombstone while probing, fill it in instead
|
||||
// of the empty bucket we eventually probed to.
|
||||
if (FoundTombstone) ThisBucket = FoundTombstone;
|
||||
FoundBucket = FoundTombstone ? FoundTombstone : ThisBucket;
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue