From: Daniel Dunbar Date: Wed, 16 Dec 2009 11:38:03 +0000 (+0000) Subject: Fix one more missing this-> to placate that picky clang++. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4eeeb4767ca4e020e7d9aff1be671d2fc6f74b81;p=oota-llvm.git 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 --- diff --git a/include/llvm/ADT/SmallVector.h b/include/llvm/ADT/SmallVector.h index baf61151175..6b448443c3c 100644 --- a/include/llvm/ADT/SmallVector.h +++ b/include/llvm/ADT/SmallVector.h @@ -218,7 +218,7 @@ void SmallVectorTemplateBase::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; }