Index: src/property.cc |
diff --git a/src/property.cc b/src/property.cc |
index 63837d3a92f312e07b787282981219b1dd590c7a..961b04342053fe2f245e1affd572b97298221028 100644 |
--- a/src/property.cc |
+++ b/src/property.cc |
@@ -13,7 +13,6 @@ namespace internal { |
void LookupResult::Iterate(ObjectVisitor* visitor) { |
LookupResult* current = this; // Could be NULL. |
while (current != NULL) { |
- visitor->VisitPointer(bit_cast<Object**>(¤t->holder_)); |
visitor->VisitPointer(bit_cast<Object**>(¤t->transition_)); |
current = current->next_; |
} |