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 c62cba2 commit 8d4f239Copy full SHA for 8d4f239
include/sparrow/buffer/dynamic_bitset/dynamic_bitset_base.hpp
@@ -1210,7 +1210,8 @@ namespace sparrow
1210
if (i < buffer().size())
1211
{
1212
const block_type current = buffer().data()[i];
1213
- 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]
1214
+ : block_type(0);
1215
buffer().data()[i] = static_cast<block_type>(
1216
(current >> bit_shift) | (next << (s_bits_per_block - bit_shift))
1217
);
0 commit comments