tools/rc/to_f64.rs
author alfadur
Wed, 14 Feb 2024 02:07:35 +0300
changeset 16019 c40f5e27aaf0
parent 15981 5aed6c0b63e2
permissions -rw-r--r--
fix connection errors carrying over to new clients

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