diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2019-04-26 03:19:43 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2019-04-26 03:19:43 +0200 |
commit | 39ce56bfb2ae2300f7f9b262b91b7825bb304118 (patch) | |
tree | 67de80308e6dcca5379f52c11e5972431ffdb78f /src/codegen/helpers.rs | |
parent | 5b2f344bb02e72fd177149e3aa5d789679fa4471 (diff) |
Remove redundant imports.
Diffstat (limited to 'src/codegen/helpers.rs')
-rw-r--r-- | src/codegen/helpers.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/codegen/helpers.rs b/src/codegen/helpers.rs index 457979b6..b630a70b 100644 --- a/src/codegen/helpers.rs +++ b/src/codegen/helpers.rs @@ -43,8 +43,6 @@ pub mod attributes { } pub fn doc(comment: String) -> TokenStream { - use std::str::FromStr; - // NOTE(emilio): By this point comments are already preprocessed and in // `///` form. Quote turns them into `#[doc]` comments, but oh well. TokenStream::from_str(&comment).unwrap() |