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
This commit is contained in:
Duncan P. N. Exon Smith 2016-03-27 23:36:55 +00:00
parent e693a56e9b
commit bd2e7848ab

View File

@ -215,8 +215,9 @@ TEST(BitstreamReaderTest, readRecordWithBlobWhileStreaming) {
}
// 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);
// Header. Included in test so that we can run llvm-bcanalyzer to debug