Skip to content

Commit 8d4f239

Browse files
pre-commit-ci[bot]Alex-PLACET
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent c62cba2 commit 8d4f239

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
@@ -1210,7 +1210,8 @@ namespace sparrow
12101210
if (i < buffer().size())
12111211
{
12121212
const block_type current = buffer().data()[i];
1213-
const block_type next = (i + 1 < buffer().size()) ? buffer().data()[i + 1] : block_type(0);
1213+
const block_type next = (i + 1 < buffer().size()) ? buffer().data()[i + 1]
1214+
: block_type(0);
12141215
buffer().data()[i] = static_cast<block_type>(
12151216
(current >> bit_shift) | (next << (s_bits_per_block - bit_shift))
12161217
);

0 commit comments

Comments
 (0)