diff --git a/src/action/components.rs b/src/action/components.rs index af6817c..705df20 100644 --- a/src/action/components.rs +++ b/src/action/components.rs @@ -15,10 +15,12 @@ impl Default for ActionDebugInstant { } impl ActionDebugInstant { + #[allow(dead_code)] pub fn reset(&mut self) { self.0 = Instant::now(); } + #[allow(dead_code)] pub fn elapsed(&self) -> Duration { self.0.elapsed() }