瀏覽代碼

Allow static_mut_refs

Jubilee Young 9 月之前
父節點
當前提交
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) }
             }