mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
silence annoying warning in release-asserts build
llvm-svn: 33797
This commit is contained in:
parent
3ae99a1181
commit
c5f2684ba7
@ -233,6 +233,7 @@ private:
|
||||
// Insert the key/value into the new table.
|
||||
BucketT *DestBucket;
|
||||
bool FoundVal = LookupBucketFor(B->first, DestBucket);
|
||||
FoundVal = FoundVal; // silence warning.
|
||||
assert(!FoundVal && "Key already in new map?");
|
||||
DestBucket->first = B->first;
|
||||
new (&DestBucket->second) ValueT(B->second);
|
||||
|
Loading…
Reference in New Issue
Block a user