We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edf3fad commit 7533e9fCopy full SHA for 7533e9f
include/sparrow/buffer/dynamic_bitset/dynamic_bitset_base.hpp
@@ -834,7 +834,8 @@ namespace sparrow
834
if (i < buffer().size())
835
{
836
const block_type current = buffer().data()[i];
837
- const block_type next = (i + 1 < buffer().size()) ? buffer().data()[i + 1] : block_type(0);
+ const block_type next = (i + 1 < buffer().size()) ? buffer().data()[i + 1]
838
+ : block_type(0);
839
buffer().data()[i] = static_cast<block_type>(
840
(current >> bit_shift) | (next << (s_bits_per_block - bit_shift))
841
);
0 commit comments