tracer: reevaluate #[allow] attributes

Convert the still-needed #[allow] to #[expect] so it warns if the
lint stops firing.

Part of #8326.

Signed-off-by: Tushar Khatri <hello@tusharkhatri.in>
This commit is contained in:
Tushar Khatri
2026-06-17 16:05:02 +00:00
committed by Bo Chen
parent a87b73a585
commit 5467db8c54

View File

@@ -3,7 +3,7 @@
// SPDX-License-Identifier: Apache-2.0
//
#![allow(static_mut_refs)]
#![expect(static_mut_refs)]
use std::cell::OnceCell;
use std::collections::HashMap;