Fix build error by fully qualifying llvm::make_unique.
[oota-llvm.git] / lib / DebugInfo / Symbolize / Symbolize.cpp
index 57e24c948589806a01607376bda18567d0097aa3..303b6d4236ac4098dd28b3052fb622412509f3d4 100644 (file)
@@ -545,7 +545,7 @@ LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) {
   if (!Context)
     Context.reset(new DWARFContextInMemory(*Objects.second));
   assert(Context);
-  auto Info = make_unique<ModuleInfo>(Objects.first, std::move(Context));
+  auto Info = llvm::make_unique<ModuleInfo>(Objects.first, std::move(Context));
   ModuleInfo *Res = Info.get();
   Modules.emplace(ModuleName, std::move(Info));
   return Res;