manual fixes based on clippy suggestions

This commit is contained in:
jussisaurio 2024-10-13 12:19:04 +03:00
parent f634e7f7a3
commit daf5863932
4 changed files with 16 additions and 18 deletions

View file

@ -534,10 +534,10 @@ pub fn insn_to_str(
"".to_string(),
),
Insn::SeekGT {
is_index,
is_index: _,
cursor_id,
start_reg,
num_regs,
num_regs: _,
target_pc,
} => (
"SeekGT",
@ -549,10 +549,10 @@ pub fn insn_to_str(
"".to_string(),
),
Insn::SeekGE {
is_index,
is_index: _,
cursor_id,
start_reg,
num_regs,
num_regs: _,
target_pc,
} => (
"SeekGE",
@ -566,7 +566,7 @@ pub fn insn_to_str(
Insn::IdxGT {
cursor_id,
start_reg,
num_regs,
num_regs: _,
target_pc,
} => (
"IdxGT",
@ -580,7 +580,7 @@ pub fn insn_to_str(
Insn::IdxGE {
cursor_id,
start_reg,
num_regs,
num_regs: _,
target_pc,
} => (
"IdxGE",