From dc200d20461a902ec803c2a6982370361471cda5 Mon Sep 17 00:00:00 2001 From: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> Date: Sun, 26 Jun 2022 12:03:25 +0200 Subject: [PATCH] haha clippy --- parser/src/parser/expr.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/parser/src/parser/expr.rs b/parser/src/parser/expr.rs index fe6979b..647e480 100644 --- a/parser/src/parser/expr.rs +++ b/parser/src/parser/expr.rs @@ -52,6 +52,7 @@ where fn expr_bp(&mut self, min_bp: u8) -> Result> { let mut lhs = self.get_lhs()?; + #[allow(clippy::while_let_loop)] // idc loop { let (tok, span) = match self.next_t() { Ok(tok) => tok,