summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/handle.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/handle.cpp b/test/handle.cpp
index 2b52b04e..563e56ae 100644
--- a/test/handle.cpp
+++ b/test/handle.cpp
@@ -8,7 +8,13 @@ namespace floormat {
namespace {
constexpr uint32_t start_index = 1024, page_size = 128;
-struct Foo { int value = 0; };
+
+struct Foo
+{
+ int value = 0;
+ ~Foo() { value = 0; }
+};
+
using Page = impl_handle::Page<Foo, page_size>;
using Handle = impl_handle::Handle<Foo, page_size>;