From: Chris Lattner Date: Sun, 30 Aug 2009 17:44:10 +0000 (+0000) Subject: hopefully unbreak the build by making this-> explicit for dependent X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=77bc60e77e864ee0748c56e9c3e532c731f0d6d1;p=oota-llvm.git hopefully unbreak the build by making this-> explicit for dependent base class lookup. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80499 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/IRBuilder.h b/include/llvm/Support/IRBuilder.h index ee2d4ed051b..4080f902062 100644 --- a/include/llvm/Support/IRBuilder.h +++ b/include/llvm/Support/IRBuilder.h @@ -130,7 +130,7 @@ public: /// Insert - Insert and return the specified instruction. template InstTy *Insert(InstTy *I, const Twine &Name = "") const { - InsertHelper(I, Name, BB, InsertPt); + this->InsertHelper(I, Name, BB, InsertPt); return I; }