Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
js2xxx committed Nov 19, 2024
1 parent 5ea51f0 commit 3d8712f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/arena/bitmap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ impl Bitmap {

// Check all the following bits.
if mid_sto.iter().any(|sto| sto.load(Relaxed) != 0)
|| end_sto.map_or(false, |sto| sto.load(Relaxed) & !(!0 << end_bit) != 0)
|| end_sto.is_some_and(|sto| sto.load(Relaxed) & !(!0 << end_bit) != 0)
{
return None;
}
Expand Down

0 comments on commit 3d8712f

Please sign in to comment.