From cd4815ed5e219b616a51e227923acbdca11eefe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Tue, 9 Jun 2020 12:45:24 +0200 Subject: [PATCH] Small storage size 2048 --- lib/fizzy/stack.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fizzy/stack.hpp b/lib/fizzy/stack.hpp index 1756b03b7..ee5357c0b 100644 --- a/lib/fizzy/stack.hpp +++ b/lib/fizzy/stack.hpp @@ -53,7 +53,7 @@ class Stack class OperandStack { /// The size of the pre-allocated internal storage: 128 bytes. - static constexpr auto small_storage_size = 1024 / sizeof(Value); + static constexpr auto small_storage_size = 2048 / sizeof(Value); /// The pointer to the top item, or below the stack bottom if stack is empty. ///