diff options
Diffstat (limited to 'lld/ELF/InputFiles.cpp')
-rw-r--r-- | lld/ELF/InputFiles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp index a50785fcff9..76ee7629f17 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 <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, |