commit | e64213b10c6bb438daaed13536f97c7e3bb5f0ce | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Sat Dec 30 00:24:20 2017 -0500 |
committer | David Tolnay <dtolnay@gmail.com> | Sat Dec 30 00:24:20 2017 -0500 |
tree | 6eb9fb57c39fec65be5a481c59839cb91a1f3571 | |
parent | f03cdb8d2c12f4c05cb9389c7c9d843158c329f4 [diff] [blame] |
Clean up unneeded `call!` calls
diff --git a/src/attr.rs b/src/attr.rs index 6152635..5cbdee9 100644 --- a/src/attr.rs +++ b/src/attr.rs
@@ -344,7 +344,7 @@ pound: punct!(#) >> bang: punct!(!) >> path_and_tts: brackets!(tuple!( - call!(::Path::parse_mod_style), + call!(Path::parse_mod_style), syn!(TokenStream) )) >> ({ @@ -384,7 +384,7 @@ do_parse!( pound: punct!(#) >> path_and_tts: brackets!(tuple!( - call!(::Path::parse_mod_style), + call!(Path::parse_mod_style), syn!(TokenStream) )) >> ({