From: Peter Collingbourne Date: Fri, 23 Sep 2016 23:23:23 +0000 (+0000) Subject: Add qualification to fix MSVC build. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9194bd40e5ff95b00823c7b53cdaba8b116ceeef;p=llvm Add qualification to fix MSVC build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@282313 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/LTO/Caching.cpp b/lib/LTO/Caching.cpp index 065239cbb1b..fd5bdb0bc01 100644 --- a/lib/LTO/Caching.cpp +++ b/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( + return llvm::make_unique( llvm::make_unique(TempFD, /* ShouldClose */ true), AddFile, TempFilename.str(), EntryPath.str(), Task); };