Skip to content

Commit

Permalink
Properly added multimap feature
Browse files Browse the repository at this point in the history
  • Loading branch information
brurucy committed Jan 9, 2025
1 parent 4cebd20 commit 4921ece
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/concurrent.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
pub mod map;

#[cfg(feature = "multimap")]
pub mod multimap;

pub mod set;
pub(crate) mod r#ref;
2 changes: 2 additions & 0 deletions src/core.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
pub(crate) mod constants;
pub(crate) mod node;
pub(crate) mod pair;

#[cfg(feature = "multimap")]
pub(crate) mod multipair;
1 change: 0 additions & 1 deletion src/core/node.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use crate::core::constants::DEFAULT_CUTOFF;
use core::borrow::Borrow;
use core::cmp::Ordering;

Expand Down

0 comments on commit 4921ece

Please # to comment.