tools/rc/to_f64.rs
author Wuzzy <Wuzzy@disroot.org>
Thu, 25 May 2023 17:46:57 +0200
changeset 15957 e8d94f84d294
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Fix speech bubble not wrapping if contain quote marks (bug #753)

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