Skip to content

Commit 0033de1

Browse files
Slightly less
1 parent a81d020 commit 0033de1

File tree

1 file changed

+0
-3
lines changed
  • compiler/rustc_parse/src/parser

1 file changed

+0
-3
lines changed

compiler/rustc_parse/src/parser/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,6 @@ impl<'a> Parser<'a> {
750750
}
751751

752752
/// Eats `+` possibly breaking tokens like `+=` in process.
753-
#[inline]
754753
fn eat_plus(&mut self) -> bool {
755754
self.break_and_eat(token::BinOp(token::Plus))
756755
}
@@ -768,7 +767,6 @@ impl<'a> Parser<'a> {
768767
}
769768

770769
/// Eats `<` possibly breaking tokens like `<<` in process.
771-
#[inline]
772770
fn eat_lt(&mut self) -> bool {
773771
let ate = self.break_and_eat(token::Lt);
774772
if ate {
@@ -1518,7 +1516,6 @@ impl<'a> Parser<'a> {
15181516
}
15191517

15201518
/// `::{` or `::*`
1521-
#[inline]
15221519
fn is_import_coupler(&mut self) -> bool {
15231520
self.check(&token::ModSep)
15241521
&& self.look_ahead(1, |t| {

0 commit comments

Comments
 (0)