Index: src/isolate-inl.h |
diff --git a/src/isolate-inl.h b/src/isolate-inl.h |
index 764bcb8bf3858fac419a2163f47cdd5aa78ca77f..5f2b4a2086561888d7bb4d7234ac44b3300a8cd4 100644 |
--- a/src/isolate-inl.h |
+++ b/src/isolate-inl.h |
@@ -54,21 +54,13 @@ bool Isolate::IsCodePreAgingActive() { |
bool Isolate::IsDebuggerActive() { |
-#ifdef ENABLE_DEBUGGER_SUPPORT |
if (!NoBarrier_Load(&debugger_initialized_)) return false; |
return debugger()->IsDebuggerActive(); |
-#else |
- return false; |
-#endif |
} |
bool Isolate::DebuggerHasBreakPoints() { |
-#ifdef ENABLE_DEBUGGER_SUPPORT |
return debug()->has_break_points(); |
-#else |
- return false; |
-#endif |
} |