Skip to content

Commit dc74ce9

Browse files
authored
Merge pull request #222 from kennystrawnmusic/no-more-feature-gate
`maybe_uninit_extra` is no longer feature-gated
2 parents 06381af + 214ecbd commit dc74ce9

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/bin/uefi.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#![no_std]
22
#![no_main]
33
#![feature(abi_efiapi)]
4-
#![feature(maybe_uninit_extra)]
54
#![deny(unsafe_op_in_unsafe_fn)]
65

76
// Defines the constants `KERNEL_BYTES` (array of `u8`) and `KERNEL_SIZE` (`usize`).

src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ for all possible configuration options.
6666
*/
6767

6868
#![cfg_attr(not(feature = "builder"), no_std)]
69-
#![feature(maybe_uninit_extra)]
7069
#![feature(maybe_uninit_slice)]
7170
#![deny(unsafe_op_in_unsafe_fn)]
7271
#![warn(missing_docs)]

0 commit comments

Comments
 (0)