From: Chris Lattner Date: Wed, 16 Dec 2009 09:09:54 +0000 (+0000) Subject: Fix a missing this-> that clang++ notices. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2e376a87dee2d10c48908c43037f61b965cec496;p=oota-llvm.git Fix a missing this-> that clang++ notices. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91530 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/SmallVector.h b/include/llvm/ADT/SmallVector.h index 991a3991d40..05f935ea733 100644 --- a/include/llvm/ADT/SmallVector.h +++ b/include/llvm/ADT/SmallVector.h @@ -314,7 +314,7 @@ public: if (this->EndX < this->CapacityX) { Retry: new (this->end()) T(Elt); - setEnd(this->end()+1); + this->setEnd(this->end()+1); return; } this->grow();