1
Fork 0

need to pick a new feature name

This commit is contained in:
Ralf Jung 2017-04-29 19:15:59 +02:00
parent 998a877737
commit 23522f6cab

View file

@ -153,7 +153,7 @@ pub struct MutexGuard<'a, T: ?Sized + 'a> {
#[stable(feature = "rust1", since = "1.0.0")]
impl<'a, T: ?Sized> !Send for MutexGuard<'a, T> { }
#[stable(feature = "rust1", since = "1.18.0")]
#[stable(feature = "mutexguard", since = "1.18.0")]
unsafe impl<'a, T: ?Sized + Sync> Sync for MutexGuard<'a, T> { }
impl<T> Mutex<T> {