mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
Make ptr::from_ref and ptr::from_mut in #106116 const.
This commit is contained in:
parent
39f2657d11
commit
e8fbf6205e
@ -691,7 +691,7 @@ where
|
||||
#[inline(always)]
|
||||
#[must_use]
|
||||
#[unstable(feature = "ptr_from_ref", issue = "106116")]
|
||||
pub fn from_ref<T: ?Sized>(r: &T) -> *const T {
|
||||
pub const fn from_ref<T: ?Sized>(r: &T) -> *const T {
|
||||
r
|
||||
}
|
||||
|
||||
@ -702,7 +702,7 @@ pub fn from_ref<T: ?Sized>(r: &T) -> *const T {
|
||||
#[inline(always)]
|
||||
#[must_use]
|
||||
#[unstable(feature = "ptr_from_ref", issue = "106116")]
|
||||
pub fn from_mut<T: ?Sized>(r: &mut T) -> *mut T {
|
||||
pub const fn from_mut<T: ?Sized>(r: &mut T) -> *mut T {
|
||||
r
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user