[Orc] Disambiguate call to make_unique. This should fix the builders broken by
[oota-llvm.git] / tools / lli / OrcLazyJIT.cpp
index 519bd72ccd4261f3046eba4c729ec9c5f143849d..8771a91be7d3ac9168da691eddd78fd487f57f96 100644 (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);
              };
     }
   }