From: Alexey Samsonov Date: Mon, 26 Oct 2015 20:12:27 +0000 (+0000) Subject: Fix build error by fully qualifying llvm::make_unique. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5f1d03dae623f7b9740f05b4b74aeaa51b9d65b4;p=oota-llvm.git Fix build error by fully qualifying llvm::make_unique. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251338 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/DebugInfo/Symbolize/Symbolize.cpp b/lib/DebugInfo/Symbolize/Symbolize.cpp index 57e24c94858..303b6d4236a 100644 --- a/lib/DebugInfo/Symbolize/Symbolize.cpp +++ b/lib/DebugInfo/Symbolize/Symbolize.cpp @@ -545,7 +545,7 @@ LLVMSymbolizer::getOrCreateModuleInfo(const std::string &ModuleName) { if (!Context) Context.reset(new DWARFContextInMemory(*Objects.second)); assert(Context); - auto Info = make_unique(Objects.first, std::move(Context)); + auto Info = llvm::make_unique(Objects.first, std::move(Context)); ModuleInfo *Res = Info.get(); Modules.emplace(ModuleName, std::move(Info)); return Res;