From 2e376a87dee2d10c48908c43037f61b965cec496 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 16 Dec 2009 09:09:54 +0000 Subject: [PATCH] Fix a missing this-> that clang++ notices. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91530 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 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(); -- 2.34.1