zlib -> libdeflate (#5085)
+ Use libdeflate + Use std::byte * Fix passing temporary to string_view + Emulate make_unique_for_overwrite
This commit is contained in:
@@ -16,10 +16,9 @@ static void DoTest(void)
|
||||
cBlockArea ba;
|
||||
ba.Create(21, 256, 21);
|
||||
ba.RelLine(0, 0, 0, 9, 8, 7, cBlockArea::baTypes | cBlockArea::baMetas, E_BLOCK_WOODEN_STAIRS, 1);
|
||||
AString Schematic;
|
||||
TEST_TRUE(cSchematicFileSerializer::SaveToSchematicString(ba, Schematic));
|
||||
const auto Schematic = cSchematicFileSerializer::SaveToSchematicString(ba);
|
||||
cBlockArea ba2;
|
||||
TEST_TRUE(cSchematicFileSerializer::LoadFromSchematicString(ba2, Schematic));
|
||||
cSchematicFileSerializer::LoadFromSchematicString(ba2, Schematic.GetView());
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user