Index: runtime/vm/allocation.cc |
=================================================================== |
--- runtime/vm/allocation.cc (revision 44266) |
+++ runtime/vm/allocation.cc (working copy) |
@@ -24,12 +24,6 @@ |
} |
-void* ZoneAllocated::operator new(uword size, BaseIsolate* isolate) { |
- ASSERT(isolate != NULL); |
- return Allocate(size, isolate->current_zone()); |
-} |
- |
- |
void* ZoneAllocated::operator new(uword size, Zone* zone) { |
ASSERT(zone == Isolate::Current()->current_zone()); |
return Allocate(size, zone); |