mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
[dsymutil] Fully qualify llvm::make_unique<>.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230826 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2929a7accf
commit
63ac784d31
@ -151,7 +151,8 @@ bool DwarfStreamer::init(Triple TheTriple, StringRef OutputFilename) {
|
||||
|
||||
// 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);
|
||||
|
||||
@ -367,7 +368,7 @@ bool DwarfLinker::createStreamer(Triple TheTriple, StringRef OutputFilename) {
|
||||
if (Options.NoOutput)
|
||||
return true;
|
||||
|
||||
Streamer = make_unique<DwarfStreamer>();
|
||||
Streamer = llvm::make_unique<DwarfStreamer>();
|
||||
return Streamer->init(TheTriple, OutputFilename);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user