1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

[Orc] Disambiguate call to make_unique. This should fix the builders broken by

r234805.

llvm-svn: 234806
This commit is contained in:
Lang Hames 2015-04-13 22:33:05 +00:00
parent dd40ba2a66
commit 9b402995fc

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);
};
}
}