tools/rc/to_f64.rs
author unC0Rr
Thu, 29 Aug 2024 15:28:20 +0200
branchtransitional_engine
changeset 16054 274a5afc2aec
parent 15981 5aed6c0b63e2
permissions -rw-r--r--
Make pas2c engine work with hwengine-future

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