Commit 5c31b955 authored by Xavier Thompson's avatar Xavier Thompson

Increase minimum deque size to reduce resizings

parent da4f8179
......@@ -34,7 +34,7 @@ namespace typon::fdt::lock_free
std::atomic<u64> _bottom {1};
std::atomic<array_type *> _array;
deque(u8 bits = 2) noexcept
deque(u8 bits = 3) noexcept
: _bits(bits)
, _array(new array_type(bits))
{}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment