Fix a missing this-> that clang++ notices.
authorChris Lattner <sabre@nondot.org>
Wed, 16 Dec 2009 09:09:54 +0000 (09:09 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 16 Dec 2009 09:09:54 +0000 (09:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91530 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/SmallVector.h

index 991a3991d4008c31604476926dd7a76fa438ba1c..05f935ea73381ca2fc51109009a3fb4230397e32 100644 (file)
@@ -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();