File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ use crate::num::NonZeroUsize;
17
17
#[ derive( Debug ) ]
18
18
pub struct Excess ( pub NonNull < u8 > , pub usize ) ;
19
19
20
- fn size_align < T > ( ) -> ( usize , usize ) {
20
+ const fn size_align < T > ( ) -> ( usize , usize ) {
21
21
( mem:: size_of :: < T > ( ) , mem:: align_of :: < T > ( ) )
22
22
}
23
23
@@ -118,13 +118,12 @@ impl Layout {
118
118
/// Constructs a `Layout` suitable for holding a value of type `T`.
119
119
#[ stable( feature = "alloc_layout" , since = "1.28.0" ) ]
120
120
#[ inline]
121
- pub fn new < T > ( ) -> Self {
121
+ pub const fn new < T > ( ) -> Self {
122
122
let ( size, align) = size_align :: < T > ( ) ;
123
123
// Note that the align is guaranteed by rustc to be a power of two and
124
124
// the size+align combo is guaranteed to fit in our address space. As a
125
125
// result use the unchecked constructor here to avoid inserting code
126
126
// that panics if it isn't optimized well enough.
127
- debug_assert ! ( Layout :: from_size_align( size, align) . is_ok( ) ) ;
128
127
unsafe {
129
128
Layout :: from_size_align_unchecked ( size, align)
130
129
}
You can’t perform that action at this time.
0 commit comments