Index: src/base/platform/mutex.h |
diff --git a/src/base/platform/mutex.h b/src/base/platform/mutex.h |
index 256b1cee4f88dd1ae1ea8dd7cc1f2aa526823d9f..2f8c07d89e58b0358caa5598b1f1964ba3fc767d 100644 |
--- a/src/base/platform/mutex.h |
+++ b/src/base/platform/mutex.h |
@@ -74,14 +74,14 @@ class Mutex V8_FINAL { |
V8_INLINE void AssertHeldAndUnmark() { |
#ifdef DEBUG |
- ASSERT_EQ(1, level_); |
+ DCHECK_EQ(1, level_); |
level_--; |
#endif |
} |
V8_INLINE void AssertUnheldAndMark() { |
#ifdef DEBUG |
- ASSERT_EQ(0, level_); |
+ DCHECK_EQ(0, level_); |
level_++; |
#endif |
} |