Commit 86dcc009 authored by vitalyr@chromium.org's avatar vitalyr@chromium.org

Remove unused function.

Review URL: http://codereview.chromium.org/3107022

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5307 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 9d5a7267
......@@ -1116,11 +1116,6 @@ void HeapObject::IterateBody(InstanceType type, int object_size,
}
void HeapObject::IterateStructBody(int object_size, ObjectVisitor* v) {
IteratePointers(v, HeapObject::kHeaderSize, object_size);
}
Object* HeapNumber::HeapNumberToBoolean() {
// NaN, +0, and -0 should return the false object
#if __BYTE_ORDER == __LITTLE_ENDIAN
......
......@@ -1022,10 +1022,6 @@ class HeapObject: public Object {
// object, and so is safe to call while the map pointer is modified.
void IterateBody(InstanceType type, int object_size, ObjectVisitor* v);
// This method only applies to struct objects. Iterates over all the fields
// of this struct.
void IterateStructBody(int object_size, ObjectVisitor* v);
// Returns the heap object's size in bytes
inline int Size();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment