Make ptr::from_ref and ptr::from_mut in #106116 const.

This commit is contained in:
Raekye
2023-03-09 16:36:20 -05:00
parent 39f2657d11
commit e8fbf6205e
+2 -2
View File
@@ -691,7 +691,7 @@ pub fn from_exposed_addr_mut<T>(addr: usize) -> *mut T
#[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
}