summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-12-16 09:09:54 +0000
committerChris Lattner <sabre@nondot.org>2009-12-16 09:09:54 +0000
commit5f5fffc5b27739902c8d14be3a9106de1c9d9a9a (patch)
treef179ccd62763e3ab858b5fd64233a74cd41547a1
parent4ea86c460a07a368610694cd5e6395c5df249407 (diff)
downloadbcm5719-llvm-5f5fffc5b27739902c8d14be3a9106de1c9d9a9a.tar.gz
bcm5719-llvm-5f5fffc5b27739902c8d14be3a9106de1c9d9a9a.zip
Fix a missing this-> that clang++ notices.
llvm-svn: 91530
-rw-r--r--llvm/include/llvm/ADT/SmallVector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/SmallVector.h b/llvm/include/llvm/ADT/SmallVector.h
index 991a3991d40..05f935ea733 100644
--- a/llvm/include/llvm/ADT/SmallVector.h
+++ b/llvm/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();
OpenPOWER on IntegriCloud