Skip to content

Commit 91d0be5

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 276df9f commit 91d0be5

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

src/rust/integer_compression/fastpfor_engine.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ pub trait FastPForInt: Copy + 'static {
5858
fn read_bitmap(input: &[u32], pos: u32) -> FastPForResult<u64>;
5959
}
6060

61-
#[allow(clippy::use_self, reason = "u32 literals here are stream words, not the Self element type")]
61+
#[allow(
62+
clippy::use_self,
63+
reason = "u32 literals here are stream words, not the Self element type"
64+
)]
6265
impl FastPForInt for u32 {
6366
const WIDTH: u8 = 32;
6467
const BITMAP_WORDS: u32 = 1;
@@ -94,7 +97,10 @@ impl FastPForInt for u32 {
9497
}
9598
}
9699

97-
#[allow(clippy::use_self, reason = "u32 literals here are stream words, not the Self element type")]
100+
#[allow(
101+
clippy::use_self,
102+
reason = "u32 literals here are stream words, not the Self element type"
103+
)]
98104
impl FastPForInt for u64 {
99105
const WIDTH: u8 = 64;
100106
const BITMAP_WORDS: u32 = 2;

0 commit comments

Comments
 (0)