Skip to content

Commit fbec232

Browse files
committed
Set unwind_safe_lock_refs stability to 1.12.0.
This is the first (and presumably only) use of this feature.
1 parent c115405 commit fbec232

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/libstd/panic.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -227,10 +227,9 @@ impl<T: ?Sized> !RefUnwindSafe for UnsafeCell<T> {}
227227
#[stable(feature = "catch_unwind", since = "1.9.0")]
228228
impl<T> RefUnwindSafe for AssertUnwindSafe<T> {}
229229

230-
// XXX: Obviously wrong, but what should it be?
231-
#[stable(feature = "catch_unwind", since = "1.9.0")]
230+
#[stable(feature = "unwind_safe_lock_refs", since = "1.12.0")]
232231
impl<T: ?Sized> RefUnwindSafe for Mutex<T> {}
233-
#[stable(feature = "catch_unwind", since = "1.9.0")]
232+
#[stable(feature = "unwind_safe_lock_refs", since = "1.12.0")]
234233
impl<T: ?Sized> RefUnwindSafe for RwLock<T> {}
235234

236235
#[stable(feature = "catch_unwind", since = "1.9.0")]

0 commit comments

Comments
 (0)