mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-25 21:16:19 +00:00
Remove an unnecessary reinterpret_cast.
llvm-svn: 53180
This commit is contained in:
parent
955fdc7a4c
commit
9112a5463e
@ -348,7 +348,7 @@ protected:
|
||||
explicit FoldingSetBucketIteratorImpl(void **Bucket);
|
||||
|
||||
FoldingSetBucketIteratorImpl(void **Bucket, bool)
|
||||
: Ptr(reinterpret_cast<void*>(Bucket)) {}
|
||||
: Ptr(Bucket) {}
|
||||
|
||||
void advance() {
|
||||
void *Probe = static_cast<FoldingSetNode*>(Ptr)->getNextInBucket();
|
||||
|
Loading…
Reference in New Issue
Block a user