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