Эх сурвалжийг харах

Bitcode: Fix MSVC bot failure from r264549

make_unique => llvm::make_unique

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@264553 91177308-0d34-0410-b5e6-96231b3b80d8
Duncan P. N. Exon Smith 9 жил өмнө
parent
commit
bd2e7848ab

+ 3 - 2
unittests/Bitcode/BitstreamReaderTest.cpp

@@ -215,8 +215,9 @@ TEST(BitstreamReaderTest, readRecordWithBlobWhileStreaming) {
     }
     }
 
 
     // Stream the buffer into the reader.
     // Stream the buffer into the reader.
-    BitstreamReader R(make_unique<StreamingMemoryObject>(
-        make_unique<BufferStreamer>(StringRef(Buffer.begin(), Buffer.size()))));
+    BitstreamReader R(llvm::make_unique<StreamingMemoryObject>(
+        llvm::make_unique<BufferStreamer>(
+            StringRef(Buffer.begin(), Buffer.size()))));
     BitstreamCursor Stream(R);
     BitstreamCursor Stream(R);
 
 
     // Header.  Included in test so that we can run llvm-bcanalyzer to debug
     // Header.  Included in test so that we can run llvm-bcanalyzer to debug