commit | 248a4e1682c0393e1c24266755bcc63f93445daf | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Thu Aug 30 17:13:46 2018 -0700 |
committer | David Tolnay <dtolnay@gmail.com> | Thu Aug 30 17:13:46 2018 -0700 |
tree | 8bf4dd08366502888a91bc29e70bccabdb115aaa | |
parent | d641ee31f81e391746fcba708b172c4644c722ed [diff] [blame] |
Remove old mod style path parsing
diff --git a/src/data.rs b/src/data.rs index 0fa08e4..d755d83 100644 --- a/src/data.rs +++ b/src/data.rs
@@ -293,7 +293,7 @@ pub_token: pub_token, paren_token: parenthesized!(content in input), in_token: Some(content.parse()?), - path: Box::new(content.parse_synom(Path::old_parse_mod_style)?), + path: Box::new(content.call(Path::parse_mod_style)?), })); } }