Format with rustfmt 0.99.2
diff --git a/src/macros.rs b/src/macros.rs
index e9b7034..f4e7d0a 100644
--- a/src/macros.rs
+++ b/src/macros.rs
@@ -113,12 +113,10 @@
)
}
-#[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)*) => ();
@@ -154,13 +152,11 @@
};
}
-#[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)*) => {
@@ -183,12 +179,10 @@
($($rest:tt)*) => (ast_struct! { $($rest)* });
}
-#[cfg(
- all(
- feature = "parsing",
- any(feature = "full", feature = "derive")
- )
-)]
+#[cfg(all(
+ feature = "parsing",
+ any(feature = "full", feature = "derive")
+))]
macro_rules! impl_synom {
($t:ident $description:tt $($parser:tt)+) => {
impl Synom for $t {