about summary refs log tree commit diff
path: root/library
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-01-01 08:10:15 +0000
committerbors <bors@rust-lang.org>2025-01-01 08:10:15 +0000
commitbc3e3015b6e449bf1607f1023d2fbc2838ee37af (patch)
tree2de9a6a6ed034eb305f918fdba7ebfd7c05c4f26 /library
parenta8953d83cfcb7caacc8d68951a32455f28265467 (diff)
parent65cb7c66d0277571f0412d29fd237ea038b8c389 (diff)
downloadrust-bc3e3015b6e449bf1607f1023d2fbc2838ee37af.tar.gz
rust-bc3e3015b6e449bf1607f1023d2fbc2838ee37af.zip
Auto merge of #134992 - Zalathar:rollup-pldy5w6, r=Zalathar
Rollup of 6 pull requests

Successful merges:

 - #131439 (Remove allowing static_mut_refs lint)
 - #133292 (E0277: suggest dereferencing function arguments in more cases)
 - #134877 (add suggestion for wrongly ordered format parameters)
 - #134945 (Some small nits to the borrowck suggestions for mutating a map through index)
 - #134950 (bootstrap: Overhaul and simplify the `tool_check_step!` macro)
 - #134979 (Provide structured suggestion for `impl Default` of type where all fields have defaults)

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'library')
-rw-r--r--library/panic_unwind/src/seh.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/panic_unwind/src/seh.rs b/library/panic_unwind/src/seh.rs
index 565a2b8c573..5afa0a19756 100644
--- a/library/panic_unwind/src/seh.rs
+++ b/library/panic_unwind/src/seh.rs
@@ -288,8 +288,6 @@ cfg_if::cfg_if! {
    }
 }
 
-// FIXME(static_mut_refs): Do not allow `static_mut_refs` lint
-#[allow(static_mut_refs)]
 pub unsafe fn panic(data: Box<dyn Any + Send>) -> u32 {
     use core::intrinsics::atomic_store_seqcst;