From bf5567de3560d48ff33319eeb672e6acdd41b2c3 Mon Sep 17 00:00:00 2001 From: Nikita Sivukhin Date: Tue, 30 Sep 2025 18:06:42 +0400 Subject: [PATCH] fix clippy - the proper fix is to nuke it actually :) --- core/translate/main_loop.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/translate/main_loop.rs b/core/translate/main_loop.rs index 5215cbdd3..5e422442b 100644 --- a/core/translate/main_loop.rs +++ b/core/translate/main_loop.rs @@ -577,7 +577,7 @@ pub fn open_loop( } else { false }; - Some(emit_autoindex( + let _ = emit_autoindex( program, index, table_cursor_id.expect( @@ -586,7 +586,7 @@ pub fn open_loop( index_cursor_id .expect("an ephemeral index must have an index cursor"), table_has_rowid, - )?); + )?; } }