summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Riss <friss@apple.com>2015-02-28 00:42:37 +0000
committerFrederic Riss <friss@apple.com>2015-02-28 00:42:37 +0000
commitb52cf5213dd7639789193e17906c0aca842cfe86 (patch)
tree925f825ab6dbe16e5a3be72ac871cb9486f7138e
parentc99ea20eda157f837913351471dee158de141a5c (diff)
downloadbcm5719-llvm-b52cf5213dd7639789193e17906c0aca842cfe86.tar.gz
bcm5719-llvm-b52cf5213dd7639789193e17906c0aca842cfe86.zip
[dsymutil] Fully qualify llvm::make_unique<>.
llvm-svn: 230826
-rw-r--r--llvm/tools/dsymutil/DwarfLinker.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/tools/dsymutil/DwarfLinker.cpp b/llvm/tools/dsymutil/DwarfLinker.cpp
index 75717531cba..a30c2d85eac 100644
--- a/llvm/tools/dsymutil/DwarfLinker.cpp
+++ b/llvm/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<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);
}
OpenPOWER on IntegriCloud