tools/rc/to_f64.rs
author unc0rr
Fri, 16 Jun 2023 08:10:45 +0200
changeset 15958 24545642473f
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Fix pas2c build erroring after parsec added function we already define

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