Format with rustfmt 0.99.6-nightly
diff --git a/src/macros.rs b/src/macros.rs
index 519c73c..aa995d3 100644
--- a/src/macros.rs
+++ b/src/macros.rs
@@ -113,10 +113,7 @@
)
}
-#[cfg(all(
- feature = "printing",
- any(feature = "full", feature = "derive")
-))]
+#[cfg(all(feature = "printing", any(feature = "full", feature = "derive")))]
macro_rules! generate_to_tokens {
(do_not_generate_to_tokens $($foo:tt)*) => ();
@@ -152,11 +149,7 @@
};
}
-#[cfg(all(
- feature = "printing",
- feature = "derive",
- not(feature = "full")
-))]
+#[cfg(all(feature = "printing", feature = "derive", not(feature = "full")))]
macro_rules! to_tokens_call {
// If the variant is marked as #full, don't auto-generate to-tokens for it.
($e:ident, $tokens:ident, #full $($rest:tt)*) => {