mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
manual fixes based on clippy suggestions
This commit is contained in:
parent
f634e7f7a3
commit
daf5863932
4 changed files with 16 additions and 18 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue