From: Lang Hames Date: Mon, 13 Apr 2015 22:33:05 +0000 (+0000) Subject: [Orc] Disambiguate call to make_unique. This should fix the builders broken by X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0d982b840e7726e6589f1d1130c5dc322967e6d7;p=oota-llvm.git [Orc] Disambiguate call to make_unique. This should fix the builders broken by r234805. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234806 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lli/OrcLazyJIT.cpp b/tools/lli/OrcLazyJIT.cpp index 519bd72ccd4..8771a91be7d 100644 --- a/tools/lli/OrcLazyJIT.cpp +++ b/tools/lli/OrcLazyJIT.cpp @@ -50,7 +50,8 @@ OrcLazyJIT::createCallbackManagerBuilder(Triple T) { orc::OrcX86_64> CCMgrT; return [](IRDumpLayerT &IRDumpLayer, RuntimeDyld::MemoryManager &MemMgr, LLVMContext &Context) { - return make_unique(IRDumpLayer, MemMgr, Context, 0, 64); + return llvm::make_unique(IRDumpLayer, MemMgr, Context, 0, + 64); }; } }