Skip to content

Commit 8773c2c

Browse files
committed
iter not needed at all
1 parent b921609 commit 8773c2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cid_collections/hash_set.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use std::collections::HashSet;
1010
/// A hash set implemented as a `HashMap` where the value is `()`.
1111
///
1212
/// See also [`HashSet`].
13-
#[derive(Default, Clone, Debug, PartialEq, Eq, derive_more::IntoIterator)]
13+
#[derive(Default, Clone, Debug, PartialEq, Eq)]
1414
pub struct CidHashSet {
1515
inner: CidHashMap<()>,
1616
}

0 commit comments

Comments
 (0)