Skip to content

Commit

Permalink
need to pick a new feature name
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfJung committed Apr 29, 2017
1 parent 998a877 commit 23522f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/sync/mutex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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> {
Expand Down

0 comments on commit 23522f6

Please sign in to comment.