Files @ c1b2442f23b2
Branch filter:

Location: CSY/reowolf/src/macros.rs - annotation

c1b2442f23b2 391 B application/rls-services+xml Show Source Show as Raw Download as Raw
MH
Remove references to old runtime and stale code
macro_rules! enabled_debug_print {
    (false, $name:literal, $format:literal) => {};
    (false, $name:literal, $format:literal, $($args:expr),*) => {};
    (true, $name:literal, $format:literal) => {
        println!("[{}] {}", $name, $format)
    };
    (true, $name:literal, $format:literal, $($args:expr),*) => {
        println!("[{}] {}", $name, format!($format, $($args),*))
    };
}