File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ use mem;
18
18
use usize;
19
19
use ptr:: { self , NonNull } ;
20
20
21
- #[ unstable( feature = "allocator_api " , issue = "32838 " ) ]
21
+ #[ unstable( feature = "alloc_internals " , issue = "0 " ) ]
22
22
#[ cfg( stage0) ]
23
23
pub type Opaque = u8 ;
24
24
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ fn default_oom_hook(layout: Layout) -> ! {
63
63
#[ cfg( not( test) ) ]
64
64
#[ doc( hidden) ]
65
65
#[ lang = "oom" ]
66
- #[ unstable( feature = "allocator_api " , issue = "32838 " ) ]
66
+ #[ unstable( feature = "alloc_internals " , issue = "0 " ) ]
67
67
pub extern fn rust_oom ( layout : Layout ) -> ! {
68
68
let hook = HOOK . load ( Ordering :: SeqCst ) ;
69
69
let hook: fn ( Layout ) -> ! = if hook. is_null ( ) {
@@ -77,7 +77,7 @@ pub extern fn rust_oom(layout: Layout) -> ! {
77
77
#[ cfg( not( test) ) ]
78
78
#[ doc( hidden) ]
79
79
#[ allow( unused_attributes) ]
80
- #[ unstable( feature = "allocator_api " , issue = "32838 " ) ]
80
+ #[ unstable( feature = "alloc_internals " , issue = "0 " ) ]
81
81
pub mod __default_lib_allocator {
82
82
use super :: { System , Layout , GlobalAlloc } ;
83
83
// for symbol names src/librustc/middle/allocator.rs
You can’t perform that action at this time.
0 commit comments