Ver código fonte

Allow static_mut_refs

Jubilee Young 9 meses atrás
pai
commit
5718f01f8d
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      src/unwinder/find_fde/registry.rs

+ 1 - 1
src/unwinder/find_fde/registry.rs

@@ -48,7 +48,7 @@ unsafe fn lock_global_state() -> impl ops::DerefMut<Target = GlobalState> {
         impl ops::Deref for LockGuard {
             type Target = GlobalState;
 
-            #[allow(static_mut_ref)]
+            #[allow(static_mut_refs)]
             fn deref(&self) -> &GlobalState {
                 unsafe { &*core::ptr::addr_of!(STATE) }
             }