[dsymutil] Fully qualify llvm::make_unique<>.
authorFrederic Riss <friss@apple.com>
Sat, 28 Feb 2015 00:42:37 +0000 (00:42 +0000)
committerFrederic Riss <friss@apple.com>
Sat, 28 Feb 2015 00:42:37 +0000 (00:42 +0000)
llvm-svn: 230826

llvm/tools/dsymutil/DwarfLinker.cpp

index 7571753..a30c2d8 100644 (file)
@@ -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);
 }