| Index: runtime/vm/object.h
|
| ===================================================================
|
| --- runtime/vm/object.h (revision 39619)
|
| +++ runtime/vm/object.h (working copy)
|
| @@ -704,7 +704,7 @@
|
| PassiveObject* obj =
|
| reinterpret_cast<PassiveObject*>(VMHandles::AllocateHandle(I));
|
| obj->raw_ = raw_ptr;
|
| - obj->set_vtable(NULL);
|
| + obj->set_vtable(0);
|
| return *obj;
|
| }
|
| static PassiveObject& Handle(RawObject* raw_ptr) {
|
| @@ -720,7 +720,7 @@
|
| PassiveObject* obj = reinterpret_cast<PassiveObject*>(
|
| VMHandles::AllocateZoneHandle(I));
|
| obj->raw_ = raw_ptr;
|
| - obj->set_vtable(NULL);
|
| + obj->set_vtable(0);
|
| return *obj;
|
| }
|
| static PassiveObject& ZoneHandle(RawObject* raw_ptr) {
|
|
|