Skip to content

Commit

Permalink
COMPILER BUG????
Browse files Browse the repository at this point in the history
  • Loading branch information
cberner committed Aug 2, 2023
1 parent a256aa5 commit 42444df
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/tree_store/page_store/bitmap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@ impl U64GroupedBitmap {

pub fn new_empty(len: u32, capacity: u32) -> Self {
let data = vec![0; Self::required_words(capacity)];
assert!(data.iter().all(|x| *x == 0));
Self { len, data }
}

Expand Down

0 comments on commit 42444df

Please sign in to comment.