Jubilee Young 9 месяцев назад
Родитель
Сommit
5718f01f8d
1 измененных файлов с 1 добавлено и 1 удалено
  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) }
             }