Skip to content

Commit 7533e9f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent edf3fad commit 7533e9f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/sparrow/buffer/dynamic_bitset/dynamic_bitset_base.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,8 @@ namespace sparrow
834834
if (i < buffer().size())
835835
{
836836
const block_type current = buffer().data()[i];
837-
const block_type next = (i + 1 < buffer().size()) ? buffer().data()[i + 1] : block_type(0);
837+
const block_type next = (i + 1 < buffer().size()) ? buffer().data()[i + 1]
838+
: block_type(0);
838839
buffer().data()[i] = static_cast<block_type>(
839840
(current >> bit_shift) | (next << (s_bits_per_block - bit_shift))
840841
);

0 commit comments

Comments
 (0)