Skip to content

Commit fbf6885

Browse files
committed
remove the T: Sync requirement for RwLock<T>: Send
That requirement makes sense for containers like `Arc` that don't uniquely own their contents, but `RwLock` is not one of those. This restriction was added in 380d23b, but it's not clear why.
1 parent 6cb49d2 commit fbf6885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sync/rwlock.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pub struct RwLock<T: ?Sized> {
8282
}
8383

8484
#[stable(feature = "rust1", since = "1.0.0")]
85-
unsafe impl<T: ?Sized + Send + Sync> Send for RwLock<T> {}
85+
unsafe impl<T: ?Sized + Send> Send for RwLock<T> {}
8686
#[stable(feature = "rust1", since = "1.0.0")]
8787
unsafe impl<T: ?Sized + Send + Sync> Sync for RwLock<T> {}
8888

0 commit comments

Comments
 (0)