File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -400,7 +400,7 @@ impl Layout {
400
400
401
401
#[ stable( feature = "alloc_layout" , since = "1.28.0" ) ]
402
402
#[ rustc_deprecated(
403
- since = "1.51 .0" ,
403
+ since = "1.52 .0" ,
404
404
reason = "Name does not follow std convention, use LayoutError" ,
405
405
suggestion = "LayoutError"
406
406
) ]
@@ -409,7 +409,7 @@ pub type LayoutErr = LayoutError;
409
409
/// The parameters given to `Layout::from_size_align`
410
410
/// or some other `Layout` constructor
411
411
/// do not satisfy its documented constraints.
412
- #[ stable( feature = "alloc_layout_error" , since = "1.49 .0" ) ]
412
+ #[ stable( feature = "alloc_layout_error" , since = "1.50 .0" ) ]
413
413
#[ derive( Clone , PartialEq , Eq , Debug ) ]
414
414
pub struct LayoutError {
415
415
private : ( ) ,
Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ pub use self::global::GlobalAlloc;
11
11
pub use self :: layout:: Layout ;
12
12
#[ stable( feature = "alloc_layout" , since = "1.28.0" ) ]
13
13
#[ rustc_deprecated(
14
- since = "1.51 .0" ,
14
+ since = "1.52 .0" ,
15
15
reason = "Name does not follow std convention, use LayoutError" ,
16
16
suggestion = "LayoutError"
17
17
) ]
18
18
#[ allow( deprecated, deprecated_in_future) ]
19
19
pub use self :: layout:: LayoutErr ;
20
20
21
- #[ stable( feature = "alloc_layout_error" , since = "1.49 .0" ) ]
21
+ #[ stable( feature = "alloc_layout_error" , since = "1.50 .0" ) ]
22
22
pub use self :: layout:: LayoutError ;
23
23
24
24
use crate :: fmt;
You can’t perform that action at this time.
0 commit comments