Skip to content

Commit ab79692

Browse files
committed
Increase "small" stack space to 256 bytes
1 parent e6917fa commit ab79692

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/fizzy/stack.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ class Stack
5252

5353
class OperandStack
5454
{
55-
/// The size of the pre-allocated internal storage: 128 bytes.
56-
static constexpr auto small_storage_size = 128 / sizeof(Value);
55+
/// The size of the pre-allocated internal storage: 256 bytes.
56+
static constexpr auto small_storage_size = 256 / sizeof(Value);
5757

5858
/// The pointer to the top item, or below the stack bottom if stack is empty.
5959
///

0 commit comments

Comments
 (0)