Skip to content

Commit b8f1d5e

Browse files
committed
Update to new nightly
1 parent 9dd75ea commit b8f1d5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/uefi_std/src/prelude.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub use core::prelude::v1::{
3939
#[doc(hidden)]
4040
pub use core::prelude::v1::{
4141
bench, global_allocator, test, test_case, Clone, Copy, Debug, Default, Eq, Hash, Ord,
42-
PartialEq, PartialOrd, RustcDecodable, RustcEncodable,
42+
PartialEq, PartialOrd,
4343
};
4444

4545
// The file so far is equivalent to src/libcore/prelude/v1.rs,

crates/uefi_std/src/rt/panic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub extern "C" fn rust_eh_personality() {}
1010

1111
#[panic_handler]
1212
#[no_mangle]
13-
pub extern "C" fn rust_begin_panic(pi: &::core::panic::PanicInfo) -> ! {
13+
pub fn rust_begin_panic(pi: &::core::panic::PanicInfo) -> ! {
1414
print!("SETUP PANIC: {}", pi);
1515

1616
loop {}

0 commit comments

Comments
 (0)