Index: src/isolate.h |
diff --git a/src/isolate.h b/src/isolate.h |
index bcb7cd40f5da8a0cac4a1cccc8250ffbb5324646..b4713786abb0feaedf6598d6686694fcb579c243 100644 |
--- a/src/isolate.h |
+++ b/src/isolate.h |
@@ -1438,11 +1438,6 @@ class StackLimitCheck BASE_EMBEDDED { |
StackGuard* stack_guard = isolate_->stack_guard(); |
return (reinterpret_cast<uintptr_t>(this) < stack_guard->real_climit()); |
} |
- bool WillOverflow(uint32_t additionalUsage) const { |
- StackGuard* stack_guard = isolate_->stack_guard(); |
- return (reinterpret_cast<uintptr_t>(this) < stack_guard->real_climit() + |
- additionalUsage); |
- } |
private: |
Isolate* isolate_; |
}; |