Avoid recompiling the implementation of many0 so much
diff --git a/src/generics.rs b/src/generics.rs
index fee556c..646b64e 100644
--- a/src/generics.rs
+++ b/src/generics.rs
@@ -239,7 +239,7 @@
impl Synom for LifetimeDef {
named!(parse -> Self, do_parse!(
- attrs: many0!(call!(Attribute::parse_outer)) >>
+ attrs: many0!(Attribute::parse_outer) >>
life: syn!(Lifetime) >>
colon: option!(punct!(:)) >>
bounds: cond!(
@@ -272,7 +272,7 @@
impl Synom for TypeParam {
named!(parse -> Self, do_parse!(
- attrs: many0!(call!(Attribute::parse_outer)) >>
+ attrs: many0!(Attribute::parse_outer) >>
id: syn!(Ident) >>
colon: option!(punct!(:)) >>
bounds: cond!(
@@ -321,7 +321,7 @@
impl Synom for ConstParam {
named!(parse -> Self, do_parse!(
- attrs: many0!(call!(Attribute::parse_outer)) >>
+ attrs: many0!(Attribute::parse_outer) >>
const_: keyword!(const) >>
ident: syn!(Ident) >>
colon: punct!(:) >>