From e0c57e422373a44d309f04bb610c5813f2395eae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A2=81=E6=B5=A9----=E5=A4=A9=E5=91=BD=E5=89=91=E4=B8=BB?= Date: Tue, 16 Jul 2024 11:05:18 +0800 Subject: [PATCH] delete #![allow(unsafe_op_in_unsafe_fn)] this is redundant, so we can just delete it. --- std/src/sys/pal/teeos/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/std/src/sys/pal/teeos/mod.rs b/std/src/sys/pal/teeos/mod.rs index 2a789e72722bd..4c0620f270a97 100644 --- a/std/src/sys/pal/teeos/mod.rs +++ b/std/src/sys/pal/teeos/mod.rs @@ -2,7 +2,6 @@ //! //! This module contains the facade (aka platform-specific) implementations of //! OS level functionality for Teeos. -#![allow(unsafe_op_in_unsafe_fn)] #![allow(unused_variables)] #![allow(dead_code)]