mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-12 19:18:48 +00:00
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:
parent
e693a56e9b
commit
bd2e7848ab
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user