We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dfbc88 commit 524c3ffCopy full SHA for 524c3ff
src/libstd/collections/hash/table.rs
@@ -123,9 +123,6 @@ pub struct RawTable<K, V> {
123
marker: marker::PhantomData<(K, V)>,
124
}
125
126
-unsafe impl<K: Send, V: Send> Send for RawTable<K, V> {}
127
-unsafe impl<K: Sync, V: Sync> Sync for RawTable<K, V> {}
128
-
129
// An unsafe view of a RawTable bucket
130
// Valid indexes are within [0..table_capacity)
131
pub struct RawBucket<K, V> {
0 commit comments