Skip to content

Commit d1bfbc1

Browse files
committed
Remove now-unneeded clippy::used_underscore_items for externs
This fixes clippy on rust >= 1.87 under Itanium EH. The lint was a false positive[0], and now does not fire[1]. [0]: rust-lang/rust-clippy#14156 [1]: rust-lang/rust-clippy#14205
1 parent 3b2747d commit d1bfbc1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/backend/itanium.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ extern "C-unwind" {
172172
#[inline]
173173
unsafe fn raise(ex: *mut u8) -> ! {
174174
#[cfg(not(target_arch = "wasm32"))]
175-
#[expect(clippy::used_underscore_items, reason = "External API")]
176175
// SAFETY: Passthrough.
177176
unsafe {
178177
_Unwind_RaiseException(ex);

0 commit comments

Comments
 (0)