Index: src/handles.h |
diff --git a/src/handles.h b/src/handles.h |
index 3bd82e51e3a542d023d146e067c4c5e146d1539f..577e83a9041e2157af393cf4179ee66b9c1ff36e 100644 |
--- a/src/handles.h |
+++ b/src/handles.h |
@@ -44,7 +44,7 @@ class MaybeHandle { |
location_ = reinterpret_cast<T**>(maybe_handle.location_); |
} |
- INLINE(void Assert() const) { ASSERT(location_ != NULL); } |
+ INLINE(void Assert() const) { DCHECK(location_ != NULL); } |
INLINE(void Check() const) { CHECK(location_ != NULL); } |
INLINE(Handle<T> ToHandleChecked()) const { |