From 4eeeb4767ca4e020e7d9aff1be671d2fc6f74b81 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 16 Dec 2009 11:38:03 +0000 Subject: [PATCH] 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 --- include/llvm/ADT/SmallVector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }