Index: src/zone.h |
diff --git a/src/zone.h b/src/zone.h |
index a61099c6bf69c1f758b0fc4fbd2c16ad33e9f00b..6ed38d3a5626e0c5168c59345827f91209a9eeaf 100644 |
--- a/src/zone.h |
+++ b/src/zone.h |
@@ -249,6 +249,9 @@ class ZoneSplayTree: public SplayTree<Config, ZoneAllocationPolicy> { |
~ZoneSplayTree(); |
INLINE(void* operator new(size_t size, Zone* zone)); |
+ |
+ void operator delete(void* pointer) { UNREACHABLE(); } |
+ void operator delete(void* pointer, Zone* zone) { UNREACHABLE(); } |
}; |