unit: use bytecode_ptr instead of aligned_unique_ptr

This commit is contained in:
Justin Viiret
2017-04-04 11:41:50 +10:00
committed by Matthew Barr
parent b6047ea5d4
commit e8162960fc
5 changed files with 30 additions and 30 deletions

View File

@@ -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);