Skip to content

Commit

Permalink
Revert "Fix unused warnings"
Browse files Browse the repository at this point in the history
This reverts commit 796abc1.
  • Loading branch information
mohanson committed Sep 23, 2024
1 parent 796abc1 commit aa4c688
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/debug.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ macro_rules! debug {
macro_rules! debug {

($fmt:literal) => {
#[cfg(not(std))]
#[cfg(std)]
println!("{}", format!($fmt));
};
($fmt:literal, $($args:expr),+) => {
#[cfg(not(std))]
#[cfg(std)]
println!("{}", format!($fmt, $($args), +));
};
}

0 comments on commit aa4c688

Please sign in to comment.