Add qualification to fix MSVC build.

llvm-svn: 282313
This commit is contained in:
Peter Collingbourne 2016-09-23 23:23:23 +00:00
parent 0b36337d61
commit a638fe057c
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ NativeObjectCache lto::localCache(std::string CacheDirectoryPath,
}
// This CacheStream will move the temporary file into the cache when done.
return make_unique<CacheStream>(
return llvm::make_unique<CacheStream>(
llvm::make_unique<raw_fd_ostream>(TempFD, /* ShouldClose */ true),
AddFile, TempFilename.str(), EntryPath.str(), Task);
};