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> {
392392 /// assert_eq!(mutex.is_poisoned(), false);
393393 /// ```
394394 #[ inline]
395- #[ unstable( feature = "mutex_unpoison" , issue = "none " ) ]
395+ #[ unstable( feature = "mutex_unpoison" , issue = "96469 " ) ]
396396 pub fn clear_poison ( guard : & MutexGuard < ' _ , T > ) {
397397 guard. lock . poison . clear ( ) ;
398398 }
Original file line number Diff line number Diff line change @@ -395,7 +395,7 @@ impl<T: ?Sized> RwLock<T> {
395395 /// assert_eq!(lock.is_poisoned(), false);
396396 /// ```
397397 #[ inline]
398- #[ unstable( feature = "mutex_unpoison" , issue = "none " ) ]
398+ #[ unstable( feature = "mutex_unpoison" , issue = "96469 " ) ]
399399 pub fn clear_poison ( guard : & RwLockWriteGuard < ' _ , T > ) {
400400 guard. lock . poison . clear ( ) ;
401401 }
You can’t perform that action at this time.
0 commit comments