mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-30 03:34:25 +03:00
unit: use bytecode_ptr instead of aligned_unique_ptr
This commit is contained in:
committed by
Matthew Barr
parent
b6047ea5d4
commit
e8162960fc
@@ -383,7 +383,7 @@ TEST_P(FDRp, moveByteStream) {
|
||||
|
||||
size_t size = fdrSize(fdrTable0.get());
|
||||
|
||||
auto fdrTable = aligned_zmalloc_unique<FDR>(size);
|
||||
auto fdrTable = make_bytecode_ptr<FDR>(size, 64);
|
||||
EXPECT_NE(nullptr, fdrTable);
|
||||
|
||||
memcpy(fdrTable.get(), fdrTable0.get(), size);
|
||||
|
Reference in New Issue
Block a user