tools/rc/to_f64.rs
author Wuzzy <Wuzzy@disroot.org>
Fri, 12 May 2023 23:15:01 +0200
changeset 15952 28b692ef6f15
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Fix CMake warning for position of cmake version

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