summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
Diffstat (limited to 'deps')
-rw-r--r--deps/v8/src/common/checks.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/common/checks.h b/deps/v8/src/common/checks.h
index a82fb4159f..33d7a8458b 100644
--- a/deps/v8/src/common/checks.h
+++ b/deps/v8/src/common/checks.h
@@ -15,7 +15,7 @@
#ifdef ENABLE_SLOW_DCHECKS
#define SLOW_DCHECK(condition) \
- CHECK(!v8::internal::v8_flags.enable_slow_asserts || (condition))
+ CHECK(!v8::internal::v8_flags.enable_slow_asserts.value() || (condition))
#define SLOW_DCHECK_IMPLIES(lhs, rhs) SLOW_DCHECK(!(lhs) || (rhs))
#else
#define SLOW_DCHECK(condition) ((void)0)