From 2a2bc249f1086b1223df9907533d55effb5382fa Mon Sep 17 00:00:00 2001 From: Katherine Kiefer Date: Sat, 9 Nov 2024 23:17:48 +1100 Subject: [PATCH] don't need that --- src/gas.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gas.rs b/src/gas.rs index 5a739932..2bc47cef 100644 --- a/src/gas.rs +++ b/src/gas.rs @@ -51,7 +51,6 @@ impl GasArena { /// Locks the gas arena and and runs the given closure with it locked, fails if it can't acquire a lock in 30ms. /// # Panics /// if `GAS_MIXTURES` hasn't been initialized, somehow. - #[allow(unused)] pub fn with_all_mixtures_fallible(f: F) -> T where F: FnOnce(Option<&[RwLock]>) -> T,