diff options
Diffstat (limited to 'llvm/lib/LTO/Caching.cpp')
-rw-r--r-- | llvm/lib/LTO/Caching.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/LTO/Caching.cpp b/llvm/lib/LTO/Caching.cpp index 065239cbb1b..fd5bdb0bc01 100644 --- a/llvm/lib/LTO/Caching.cpp +++ b/llvm/lib/LTO/Caching.cpp @@ -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); }; |