Skip to content

Commit

Permalink
Fixup parts
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobnissen committed Oct 25, 2024
1 parent abc3a31 commit 51c5553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/longsequences/chunk_iterator.jl
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function parts(seq::LongSequence)
end
# If we have bits in the tail, then clearly those bits means the last bitindex
# points to one past the last full chunk
body = (1, lbii - !iszero(bits_in_tail))
body = (UInt(1), (lbii - !iszero(bits_in_tail)) % UInt)
(head, body, tail)

Check warning on line 165 in src/longsequences/chunk_iterator.jl

View check run for this annotation

Codecov / codecov/patch

src/longsequences/chunk_iterator.jl#L164-L165

Added lines #L164 - L165 were not covered by tests
end

Expand Down

0 comments on commit 51c5553

Please sign in to comment.