From 85e77b26beb41afa6505d82ceafea6ddab3e30bb Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 23 Mar 2018 00:42:47 +0000 Subject: [PATCH] Fix the MSVC build. llvm-svn: 328285 --- lld/ELF/InputFiles.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp index a50785fcff9d..76ee7629f174 100644 --- a/lld/ELF/InputFiles.cpp +++ b/lld/ELF/InputFiles.cpp @@ -115,7 +115,7 @@ std::string InputFile::getSrcMsg(const Symbol &Sym, InputSectionBase &Sec, } template void ObjFile::initializeDwarf() { - Dwarf = make_unique(make_unique>(this)); + Dwarf = llvm::make_unique(make_unique>(this)); const DWARFObject &Obj = Dwarf->getDWARFObj(); DwarfLine.reset(new DWARFDebugLine); DWARFDataExtractor LineData(Obj, Obj.getLineSection(), Config->IsLE,