git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230826
91177308-0d34-0410-b5e6-
96231b3b80d8
// Create the output file.
std::error_code EC;
- OutFile = make_unique<raw_fd_ostream>(OutputFilename, EC, sys::fs::F_None);
+ OutFile = llvm::make_unique<raw_fd_ostream>(OutputFilename, EC,
+ sys::fs::F_None);
if (EC)
return error(Twine(OutputFilename) + ": " + EC.message(), Context);
if (Options.NoOutput)
return true;
- Streamer = make_unique<DwarfStreamer>();
+ Streamer = llvm::make_unique<DwarfStreamer>();
return Streamer->init(TheTriple, OutputFilename);
}