Remove some unnecessary into()
calls.
These are probably leftovers from recent `TokenStream` simplifications.
This commit is contained in:
parent
82ad4f1f45
commit
895a79423b
1 changed files with 1 additions and 1 deletions
|
@ -1124,7 +1124,7 @@ impl<'a> LoweringContext<'a> {
|
|||
TokenTree::Delimited(span, delim, tts) => TokenTree::Delimited(
|
||||
span,
|
||||
delim,
|
||||
self.lower_token_stream(tts.into()).into(),
|
||||
self.lower_token_stream(tts),
|
||||
).into(),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue