Closed hawkw closed 1 year ago
Clippy doesn't like the use of #[cfg(all(...))] where there's only one condition in the all(...). This commit fixes that and makes clippy happy about it.
#[cfg(all(...))]
all(...)
Clippy doesn't like the use of
#[cfg(all(...))]
where there's only one condition in theall(...)
. This commit fixes that and makes clippy happy about it.