tools/rc/to_f64.rs
author unC0Rr
Mon, 02 Oct 2023 21:36:13 +0200
changeset 16008 1635ce22b214
parent 15981 5aed6c0b63e2
permissions -rw-r--r--
Adopt more recent versions of dependencies, apply clippy fixes

pub fn to_f64<T: Into<f64>>(v: T) -> f64 {
    v.into()
}