| Index: src/objects-inl.h
|
| diff --git a/src/objects-inl.h b/src/objects-inl.h
|
| index af02ceedc33ec4374168da95ea79dc4d5faec9c3..ff2a16747a0a42f7efd5689e73857e50dca6bcc7 100644
|
| --- a/src/objects-inl.h
|
| +++ b/src/objects-inl.h
|
| @@ -87,13 +87,6 @@ PropertyDetails PropertyDetails::AsDeleted() const {
|
| }
|
|
|
|
|
| -#define FIXED_TYPED_ARRAY_CAST_ACCESSOR(type) \
|
| - template<> \
|
| - type* type::cast(Object* object) { \
|
| - SLOW_ASSERT(object->Is##type()); \
|
| - return reinterpret_cast<type*>(object); \
|
| - }
|
| -
|
| #define INT_ACCESSORS(holder, name, offset) \
|
| int holder::name() { return READ_INT_FIELD(this, offset); } \
|
| void holder::set_##name(int value) { WRITE_INT_FIELD(this, offset, value); }
|
|
|