[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
This commit is contained in:
Lang Hames 2015-04-13 22:33:05 +00:00
parent 597d2b7309
commit 0d982b840e

View File

@ -50,7 +50,8 @@ OrcLazyJIT::createCallbackManagerBuilder(Triple T) {
orc::OrcX86_64> CCMgrT;
return [](IRDumpLayerT &IRDumpLayer, RuntimeDyld::MemoryManager &MemMgr,
LLVMContext &Context) {
return make_unique<CCMgrT>(IRDumpLayer, MemMgr, Context, 0, 64);
return llvm::make_unique<CCMgrT>(IRDumpLayer, MemMgr, Context, 0,
64);
};
}
}