cpp_demangle 0.2.4

A crate for demangling C++ symbols
Documentation
macro_rules! log {
    ( $fmt:expr ) => {
        if cfg!(feature = "logging") {
            println!($fmt);
        }
    };
    ( $fmt:expr, $($x:tt)* ) => {
        if cfg!(feature = "logging") {
            println!($fmt, $($x)*);
        }
    }
}