Remove unused #[must_used] (#17959)

# Objective

- Fixed CI compilation failure on Rust Nightly 1.87 due to [this
PR](https://github.com/rust-lang/rust/pull/136923)

## Solution

- Removed unused `#[must_use]`

## Testing

- cargo +nightly check --target wasm32-unknown-unknown -Z
build-std=std,panic_abort
This commit is contained in:
Zachary Harrold 2025-02-21 16:39:16 +11:00 committed by GitHub
parent 8de6b16e9d
commit 6bcb2b633b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1417,7 +1417,6 @@ impl AppExit {
}
impl From<u8> for AppExit {
#[must_use]
fn from(value: u8) -> Self {
Self::from_code(value)
}