Skip to content

Commit

Permalink
Small storage size 2048
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Sep 10, 2020
1 parent 28bbd03 commit cd4815e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fizzy/stack.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down

0 comments on commit cd4815e

Please sign in to comment.