From 0d982b840e7726e6589f1d1130c5dc322967e6d7 Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Mon, 13 Apr 2015 22:33:05 +0000 Subject: [PATCH] [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 --- tools/lli/OrcLazyJIT.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); }; } } -- 2.34.1