Skip to content

Commit

Permalink
Remove glob imports
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Aug 7, 2019
1 parent 89f41ca commit b342e91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions futures-async-stream-macro/src/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use syn::{
parse::{Parse, ParseStream},
token,
visit_mut::VisitMut,
ArgCaptured, Expr, FnArg, FnDecl, Ident, ItemFn, Pat, PatIdent, Result, ReturnType, Token,
Type, TypeTuple, *,
ArgCaptured, Attribute, Block, Expr, FnArg, FnDecl, Ident, ItemFn, MethodSig, Pat, PatIdent,
Result, ReturnType, Token, TraitItemMethod, Type, TypeTuple, Visibility,
};

use crate::{
Expand Down
2 changes: 1 addition & 1 deletion futures-async-stream-macro/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use quote::ToTokens;
use syn::{
parse::{Parse, ParseStream},
punctuated::Punctuated,
Result, *,
token, Expr, ExprTuple, ExprVerbatim, Result,
};

pub(crate) fn first_last<T: ToTokens>(tokens: &T) -> (Span, Span) {
Expand Down

0 comments on commit b342e91

Please sign in to comment.