[llvm] r282313 - Add qualification to fix MSVC build.

Peter Collingbourne via llvm-commits llvm-commits at lists.llvm.org
Fri Sep 23 16:23:23 PDT 2016


Author: pcc
Date: Fri Sep 23 18:23:23 2016
New Revision: 282313

URL: http://llvm.org/viewvc/llvm-project?rev=282313&view=rev
Log:
Add qualification to fix MSVC build.

Modified:
    llvm/trunk/lib/LTO/Caching.cpp

Modified: llvm/trunk/lib/LTO/Caching.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/LTO/Caching.cpp?rev=282313&r1=282312&r2=282313&view=diff
==============================================================================
--- llvm/trunk/lib/LTO/Caching.cpp (original)
+++ llvm/trunk/lib/LTO/Caching.cpp Fri Sep 23 18:23:23 2016
@@ -91,7 +91,7 @@ NativeObjectCache lto::localCache(std::s
       }
 
       // 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);
     };




More information about the llvm-commits mailing list