summaryrefslogtreecommitdiffhomepage
path: root/src/handle-page.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/handle-page.hpp')
-rw-r--r--src/handle-page.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/handle-page.hpp b/src/handle-page.hpp
index 057a512e..bf7ecdad 100644
--- a/src/handle-page.hpp
+++ b/src/handle-page.hpp
@@ -9,6 +9,7 @@ namespace floormat::impl_handle {
template<typename Obj, uint32_t PageSize>
struct Item
{
+ ~Item() noexcept;
union { char empty = {}; Obj object; };
Handle<Obj, PageSize> handle;
uint32_t next;