File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -721,7 +721,6 @@ impl Token {
721
721
}
722
722
723
723
impl PartialEq < TokenKind > for Token {
724
- #[ inline]
725
724
fn eq ( & self , rhs : & TokenKind ) -> bool {
726
725
self . kind == * rhs
727
726
}
Original file line number Diff line number Diff line change @@ -1706,7 +1706,6 @@ impl Ident {
1706
1706
/// macro (e.g., `macro` or `macro_rules!` items) and stay different if they came from different
1707
1707
/// non-transparent macros.
1708
1708
/// Technically, this operation strips all transparent marks from ident's syntactic context.
1709
- #[ inline]
1710
1709
pub fn normalize_to_macro_rules ( self ) -> Ident {
1711
1710
Ident :: new ( self . name , self . span . normalize_to_macro_rules ( ) )
1712
1711
}
@@ -1722,7 +1721,6 @@ impl Ident {
1722
1721
}
1723
1722
1724
1723
impl PartialEq for Ident {
1725
- #[ inline]
1726
1724
fn eq ( & self , rhs : & Self ) -> bool {
1727
1725
self . name == rhs. name && self . span . eq_ctxt ( rhs. span )
1728
1726
}
You can’t perform that action at this time.
0 commit comments