| Index: src/objects-visiting.h
|
| diff --git a/src/objects-visiting.h b/src/objects-visiting.h
|
| index 967e1d4fc1a550e21af4d7b045ea2473689a98e0..f7758fdf4fcfed374698e35c8f68515e03c35cbb 100644
|
| --- a/src/objects-visiting.h
|
| +++ b/src/objects-visiting.h
|
| @@ -47,14 +47,13 @@ namespace internal {
|
| class StaticVisitorBase : public AllStatic {
|
| public:
|
| #define VISITOR_ID_LIST(V) \
|
| - V(SeqOneByteString) \
|
| + V(SeqOneByteString) \
|
| V(SeqTwoByteString) \
|
| V(ShortcutCandidate) \
|
| V(ByteArray) \
|
| V(FreeSpace) \
|
| V(FixedArray) \
|
| V(FixedDoubleArray) \
|
| - V(FixedTypedArray) \
|
| V(ConstantPoolArray) \
|
| V(NativeContext) \
|
| V(AllocationSite) \
|
| @@ -323,10 +322,6 @@ class StaticNewSpaceVisitor : public StaticVisitorBase {
|
| return FixedDoubleArray::SizeFor(length);
|
| }
|
|
|
| - INLINE(static int VisitFixedTypedArray(Map* map, HeapObject* object)) {
|
| - return reinterpret_cast<FixedTypedArrayBase*>(object)->size();
|
| - }
|
| -
|
| INLINE(static int VisitJSObject(Map* map, HeapObject* object)) {
|
| return JSObjectVisitor::Visit(map, object);
|
| }
|
|
|