summaryrefslogtreecommitdiffstats
path: root/tests/ChunkData/creatable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ChunkData/creatable.cpp')
-rw-r--r--tests/ChunkData/creatable.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/tests/ChunkData/creatable.cpp b/tests/ChunkData/creatable.cpp
index a879c3dd7..260583213 100644
--- a/tests/ChunkData/creatable.cpp
+++ b/tests/ChunkData/creatable.cpp
@@ -8,16 +8,21 @@ int main(int argc, char** argv)
class cMockAllocationPool
: public cAllocationPool<cChunkData::sChunkSection>
- {
- virtual cChunkData::sChunkSection * Allocate()
+ {
+ virtual cChunkData::sChunkSection * Allocate() override
{
return new cChunkData::sChunkSection();
}
-
- virtual void Free(cChunkData::sChunkSection * a_Ptr)
+
+ virtual void Free(cChunkData::sChunkSection * a_Ptr) override
{
delete a_Ptr;
}
+
+ virtual bool DoIsEqual(const cAllocationPool<cChunkData::sChunkSection> &) const NOEXCEPT override
+ {
+ return false;
+ }
} Pool;
cChunkData buffer(Pool);
return 0;