Skip to content

Commit

Permalink
Fix fmt in bitmap.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
NobodyXu authored Oct 19, 2024
1 parent 21f4851 commit 8b9d7d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/bitmap.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
use super::{thread_id::get_thread_id, SliceExt};

use std::{array, sync::atomic::{AtomicUsize, Ordering::Relaxed}};
use std::{
array,
sync::atomic::{AtomicUsize, Ordering::Relaxed},
};

fn compare_exchange(atomic: &AtomicUsize, curr: usize, new: usize) -> Result<(), usize> {
atomic
Expand Down

0 comments on commit 8b9d7d3

Please sign in to comment.