Format with rustfmt

This commit is contained in:
topjohnwu
2022-07-22 03:53:50 -07:00
parent f08712cd0a
commit 4264ae49c0
3 changed files with 7 additions and 7 deletions

View File

@@ -46,7 +46,7 @@ impl LogLevel {
LogLevel::Warn => LogFlag::DisableWarn,
LogLevel::Info => LogFlag::DisableInfo,
LogLevel::Debug => LogFlag::DisableDebug,
_ => 0
_ => 0,
}
}
}
@@ -135,5 +135,5 @@ macro_rules! debug {
#[cfg(not(debug_assertions))]
#[macro_export]
macro_rules! debug {
($($arg:tt)+) => ()
($($arg:tt)+) => {};
}