Fix the MSVC build.
authorRafael Espindola <rafael.espindola@gmail.com>
Fri, 23 Mar 2018 00:42:47 +0000 (00:42 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Fri, 23 Mar 2018 00:42:47 +0000 (00:42 +0000)
llvm-svn: 328285

lld/ELF/InputFiles.cpp

index a50785fcff9da9b0bdfe4f4fddaca337f579134b..76ee7629f174c364db5ccf71600e707efceb9363 100644 (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,