summaryrefslogtreecommitdiff
path: root/deps/v8/src/regexp/regexp-stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/regexp/regexp-stack.h')
-rw-r--r--deps/v8/src/regexp/regexp-stack.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/regexp/regexp-stack.h b/deps/v8/src/regexp/regexp-stack.h
index 7ecaa40b81..d3c5415f1f 100644
--- a/deps/v8/src/regexp/regexp-stack.h
+++ b/deps/v8/src/regexp/regexp-stack.h
@@ -73,6 +73,9 @@ class RegExpStack {
char* RestoreStack(char* from);
void FreeThreadResources() { thread_local_.Free(); }
+ // Maximal size of allocated stack area.
+ static constexpr size_t kMaximumStackSize = 64 * MB;
+
private:
RegExpStack();
~RegExpStack();
@@ -84,9 +87,6 @@ class RegExpStack {
// Minimal size of allocated stack area.
static const size_t kMinimumStackSize = 1 * KB;
- // Maximal size of allocated stack area.
- static const size_t kMaximumStackSize = 64 * MB;
-
// Structure holding the allocated memory, size and limit.
struct ThreadLocal {
ThreadLocal() { Clear(); }