summaryrefslogtreecommitdiffstats
path: root/tests/SchematicFileSerializer/Stubs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/SchematicFileSerializer/Stubs.cpp')
-rw-r--r--tests/SchematicFileSerializer/Stubs.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/SchematicFileSerializer/Stubs.cpp b/tests/SchematicFileSerializer/Stubs.cpp
index 00f873b7a..74898fe50 100644
--- a/tests/SchematicFileSerializer/Stubs.cpp
+++ b/tests/SchematicFileSerializer/Stubs.cpp
@@ -13,21 +13,23 @@
-cBlockInfo::~cBlockInfo()
+void cBlockInfo::sHandlerDeleter::operator () (cBlockHandler * a_Handler)
{
+ delete a_Handler;
}
-void cBlockInfo::Initialize(cBlockInfo::cBlockInfoArray & a_BlockInfos)
+cBlockInfo::cBlockInfoArray::cBlockInfoArray()
{
+ cBlockInfoArray & BlockInfos = *this;
// The piece-loading code uses the handlers for rotations, so we need valid handlers
// Insert dummy handlers:
- for (size_t i = 0; i < ARRAYCOUNT(a_BlockInfos); i++)
+ for (size_t i = 0; i < BlockInfos.size(); i++)
{
- a_BlockInfos[i].m_Handler = new cBlockHandler(static_cast<BLOCKTYPE>(i));
+ BlockInfos[i].m_Handler.reset(new cBlockHandler(static_cast<BLOCKTYPE>(i)));
}
}