mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-13 16:03:58 +00:00
Fix one more missing this-> to placate that picky clang++.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91536 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fca55c8ac7
commit
4eeeb4767c
@ -218,7 +218,7 @@ void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
|
|||||||
if (!this->isSmall())
|
if (!this->isSmall())
|
||||||
operator delete(this->begin());
|
operator delete(this->begin());
|
||||||
|
|
||||||
setEnd(NewElts+CurSize);
|
this->setEnd(NewElts+CurSize);
|
||||||
this->BeginX = NewElts;
|
this->BeginX = NewElts;
|
||||||
this->CapacityX = this->begin()+NewCapacity;
|
this->CapacityX = this->begin()+NewCapacity;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user