Fix the MSVC build.

llvm-svn: 328285
This commit is contained in:
Rafael Espindola 2018-03-23 00:42:47 +00:00
parent 3c3ebcc5f4
commit 85e77b26be

View File

@ -115,7 +115,7 @@ std::string InputFile::getSrcMsg(const Symbol &Sym, InputSectionBase &Sec,
}
template <class ELFT> void ObjFile<ELFT>::initializeDwarf() {
Dwarf = make_unique<DWARFContext>(make_unique<LLDDwarfObj<ELFT>>(this));
Dwarf = llvm::make_unique<DWARFContext>(make_unique<LLDDwarfObj<ELFT>>(this));
const DWARFObject &Obj = Dwarf->getDWARFObj();
DwarfLine.reset(new DWARFDebugLine);
DWARFDataExtractor LineData(Obj, Obj.getLineSection(), Config->IsLE,