diff --git a/tools/dsymutil/DwarfLinker.cpp b/tools/dsymutil/DwarfLinker.cpp index 75717531cba..a30c2d85eac 100644 --- a/tools/dsymutil/DwarfLinker.cpp +++ b/tools/dsymutil/DwarfLinker.cpp @@ -151,7 +151,8 @@ bool DwarfStreamer::init(Triple TheTriple, StringRef OutputFilename) { // Create the output file. std::error_code EC; - OutFile = make_unique(OutputFilename, EC, sys::fs::F_None); + OutFile = llvm::make_unique(OutputFilename, EC, + sys::fs::F_None); if (EC) return error(Twine(OutputFilename) + ": " + EC.message(), Context); @@ -367,7 +368,7 @@ bool DwarfLinker::createStreamer(Triple TheTriple, StringRef OutputFilename) { if (Options.NoOutput) return true; - Streamer = make_unique(); + Streamer = llvm::make_unique(); return Streamer->init(TheTriple, OutputFilename); }