Skip to content

Commit

Permalink
Small storage size 1024
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Sep 10, 2020
1 parent c28b01f commit 28bbd03
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 = 128 / sizeof(Value);
static constexpr auto small_storage_size = 1024 / sizeof(Value);

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

0 comments on commit 28bbd03

Please sign in to comment.