[2024-12-19] Suppress warning about implicit default

This commit is contained in:
Andrew Conlin 2024-12-19 09:43:22 +00:00
parent 932247bb7c
commit 2219a148fd

View File

@ -51,6 +51,7 @@ mod tictoc {
Ok(Init::new())
}
#[pyo3(signature = (tic=None))]
fn toc(&mut self, tic: Option<Init>) -> PyResult<Results> {
let elapsed_time = match tic {
Some(ref tic) => tic.time.elapsed(),