Fix one more missing this-> to placate that picky clang++.

llvm-svn: 91536
This commit is contained in:
Daniel Dunbar 2009-12-16 11:38:03 +00:00
parent 6df9f54d6d
commit 1482b5aa16
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ void SmallVectorTemplateBase<T, isPodLike>::grow(size_t MinSize) {
if (!this->isSmall())
operator delete(this->begin());
setEnd(NewElts+CurSize);
this->setEnd(NewElts+CurSize);
this->BeginX = NewElts;
this->CapacityX = this->begin()+NewCapacity;
}