diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2017-12-22 19:50:21 +0100 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2018-01-20 11:09:23 +0100 |
| commit | 55c50cd8ac5ed5a799bc9f5aa1fe8fcfbb956706 (patch) | |
| tree | df55f9b19b89d7b1e06a8fc7abdf002ed8d60da6 /src/libstd/panic.rs | |
| parent | 2d51e7458037187eb789caacf3180c14f3d84614 (diff) | |
| download | rust-55c50cd8ac5ed5a799bc9f5aa1fe8fcfbb956706.tar.gz rust-55c50cd8ac5ed5a799bc9f5aa1fe8fcfbb956706.zip | |
Stabilize std::ptr::NonNull
Diffstat (limited to 'src/libstd/panic.rs')
| -rw-r--r-- | src/libstd/panic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/panic.rs b/src/libstd/panic.rs index 6f7d8ddb770..560876006d3 100644 --- a/src/libstd/panic.rs +++ b/src/libstd/panic.rs @@ -198,7 +198,7 @@ impl<T: RefUnwindSafe + ?Sized> UnwindSafe for *const T {} impl<T: RefUnwindSafe + ?Sized> UnwindSafe for *mut T {} #[unstable(feature = "ptr_internals", issue = "0")] impl<T: UnwindSafe + ?Sized> UnwindSafe for Unique<T> {} -#[unstable(feature = "nonnull", issue = "27730")] +#[stable(feature = "nonnull", since = "1.24.0")] impl<T: RefUnwindSafe + ?Sized> UnwindSafe for NonNull<T> {} #[stable(feature = "catch_unwind", since = "1.9.0")] impl<T: ?Sized> UnwindSafe for Mutex<T> {} |
