Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Gianmarco Garrisi committed Feb 25, 2024
1 parent 12cad90 commit d2f4001
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core_iterators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
#[cfg(not(feature = "std"))]
pub(crate) mod std {
pub use core::*;
pub use ::alloc::vec;
pub use core::*;
}

use std::hash::Hash;
Expand Down
2 changes: 1 addition & 1 deletion src/double_priority_queue/iterators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
#[cfg(not(feature = "std"))]
pub(crate) mod std {
pub use core::*;
pub use ::alloc::vec;
pub use core::*;
}

use core::hash::BuildHasher;
Expand Down
2 changes: 1 addition & 1 deletion src/priority_queue/iterators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
#[cfg(not(feature = "std"))]
pub(crate) mod std {
pub use core::*;
pub use ::alloc::vec;
pub use core::*;
}

use core::hash::BuildHasher;
Expand Down

0 comments on commit d2f4001

Please sign in to comment.