From 7593f88d5a18476ff4ba13d7666cda6b58ebcafc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bennet=20Ble=C3=9Fmann?= Date: Thu, 31 Jul 2025 21:40:38 +0200 Subject: [PATCH] ingore nerver looping loop, but add a todo --- src/machine/system_calls.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/machine/system_calls.rs b/src/machine/system_calls.rs index 10323c5c..77230c01 100644 --- a/src/machine/system_calls.rs +++ b/src/machine/system_calls.rs @@ -989,6 +989,7 @@ impl MachineState { } } + #[allow(clippy::never_loop)] // TODO why is there a loop here that never loops? loop { match lexer.lookahead_char() { Err(e) if e.is_unexpected_eof() => { -- 2.54.0