Index: src/liveedit.h |
diff --git a/src/liveedit.h b/src/liveedit.h |
index 7f1cb5216f2c9fe4e06b535d6c5b2e15007f4021..df2280d8cfd8885146f18db441033d879433bf6f 100644 |
--- a/src/liveedit.h |
+++ b/src/liveedit.h |
@@ -208,10 +208,7 @@ class JSArrayBasedStruct { |
protected: |
void SetField(int field_position, Handle<Object> value) { |
- Handle<Object> no_failure = |
- JSObject::SetElement(array_, field_position, value, NONE, SLOPPY); |
- ASSERT(!no_failure.is_null()); |
- USE(no_failure); |
+ JSObject::SetElement(array_, field_position, value, NONE, SLOPPY).Assert(); |
} |
void SetSmiValueField(int field_position, int value) { |