diff --git a/src/set.rs b/src/set.rs index 0ab754e..035e68f 100644 --- a/src/set.rs +++ b/src/set.rs @@ -17,10 +17,9 @@ pub struct HashSet { raw: raw::HashMap, } -// Safety: We only ever hand out &K/V through shared references to the map, +// Safety: We only ever hand out &K through shared references to the map, // so normal Send/Sync rules apply. We never expose owned or mutable references // to keys or values. -// TODO unsafe impl Send for HashSet {} unsafe impl Sync for HashSet {}