Fix a couple of 2018 edition warnings

This commit is contained in:
bjorn3 2023-02-15 18:25:42 +00:00
parent 4435686a48
commit 41866bf2f4
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
}
#[panic_handler]
fn panic_handler(_: &core::panic::PanicInfo) -> ! {
fn panic_handler(_: &core::panic::PanicInfo<'_>) -> ! {
core::intrinsics::abort();
}

View File

@ -6,7 +6,7 @@
extern "C" {}
#[panic_handler]
fn panic_handler(_: &core::panic::PanicInfo) -> ! {
fn panic_handler(_: &core::panic::PanicInfo<'_>) -> ! {
core::intrinsics::abort();
}