File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -392,7 +392,7 @@ impl<T: ?Sized> Mutex<T> {
392
392
/// assert_eq!(mutex.is_poisoned(), false);
393
393
/// ```
394
394
#[ inline]
395
- #[ unstable( feature = "mutex_unpoison" , issue = "none " ) ]
395
+ #[ unstable( feature = "mutex_unpoison" , issue = "96469 " ) ]
396
396
pub fn clear_poison ( guard : & MutexGuard < ' _ , T > ) {
397
397
guard. lock . poison . clear ( ) ;
398
398
}
Original file line number Diff line number Diff line change @@ -395,7 +395,7 @@ impl<T: ?Sized> RwLock<T> {
395
395
/// assert_eq!(lock.is_poisoned(), false);
396
396
/// ```
397
397
#[ inline]
398
- #[ unstable( feature = "mutex_unpoison" , issue = "none " ) ]
398
+ #[ unstable( feature = "mutex_unpoison" , issue = "96469 " ) ]
399
399
pub fn clear_poison ( guard : & RwLockWriteGuard < ' _ , T > ) {
400
400
guard. lock . poison . clear ( ) ;
401
401
}
You can’t perform that action at this time.
0 commit comments