Add qualification to fix MSVC build.

llvm-svn: 276720
This commit is contained in:
Peter Collingbourne 2016-07-26 02:10:56 +00:00
parent feee2103c6
commit 76681d6ab5
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ CpioFile::CpioFile(std::unique_ptr<raw_fd_ostream> OS, StringRef S)
ErrorOr<CpioFile *> CpioFile::create(StringRef OutputPath) {
std::string Path = (OutputPath + ".cpio").str();
std::error_code EC;
auto OS = make_unique<raw_fd_ostream>(Path, EC, sys::fs::F_None);
auto OS = llvm::make_unique<raw_fd_ostream>(Path, EC, sys::fs::F_None);
if (EC)
return EC;
return new CpioFile(std::move(OS), path::filename(OutputPath));