Skip to content

Commit

Permalink
Stabilize <*mut _>::cast and <*const _>::cast
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Jul 16, 2019
1 parent 4b65a86 commit 8040c54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcore/ptr/mod.rs
Expand Up @@ -1043,7 +1043,7 @@ impl<T: ?Sized> *const T {
}

/// Cast to a pointer to a different type
#[unstable(feature = "ptr_cast", issue = "60602")]
#[stable(feature = "ptr_cast", since = "1.38.0")]
#[inline]
pub const fn cast<U>(self) -> *const U {
self as _
Expand Down Expand Up @@ -1678,7 +1678,7 @@ impl<T: ?Sized> *mut T {
}

/// Cast to a pointer to a different type
#[unstable(feature = "ptr_cast", issue = "60602")]
#[stable(feature = "ptr_cast", since = "1.38.0")]
#[inline]
pub const fn cast<U>(self) -> *mut U {
self as _
Expand Down

0 comments on commit 8040c54

Please sign in to comment.