Skip to content

Commit

Permalink
miri
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuyukitanimura committed Aug 24, 2024
1 parent 9fbb87d commit 74b9d80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrow-buffer/src/util/bit_mask.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

//! Utils for working with packed bit masks
#![cfg(not(miri))]
use crate::bit_util::ceil;

/// Sets all bits on `write_data` in the range `[offset_write..offset_write+len]` to be equal to the
Expand All @@ -33,6 +32,7 @@ pub fn set_bits(
let mut null_count = 0;

let mut acc = 0;
#[cfg(not(miri))]
while len > acc {
let (n, l) = set_upto_64bits(
write_data,
Expand Down

0 comments on commit 74b9d80

Please sign in to comment.