 Chromium Code Reviews
 Chromium Code Reviews Issue 317273005:
  VM: Make ZoneAllocated-objects that don't need a vtable smaller.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
    
  
    Issue 317273005:
  VM: Make ZoneAllocated-objects that don't need a vtable smaller.  (Closed) 
  Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/| Index: runtime/vm/zone_test.cc | 
| =================================================================== | 
| --- runtime/vm/zone_test.cc (revision 36988) | 
| +++ runtime/vm/zone_test.cc (working copy) | 
| @@ -129,6 +129,7 @@ | 
| class SimpleZoneObject : public ZoneAllocated { | 
| public: | 
| SimpleZoneObject() : slot(marker++) { } | 
| + virtual ~SimpleZoneObject() { } | 
| virtual int GetSlot() { return slot; } | 
| int slot; | 
| }; |