simulator: Silence unused variable warning

This commit is contained in:
Pekka Enberg
2024-08-01 09:12:53 +03:00
parent ce7f373add
commit 6a62e03a7d

View File

@@ -31,7 +31,7 @@ fn main() {
match rows.next_row() {
Ok(result) => {
match result {
limbo_core::RowResult::Row(row) => {
limbo_core::RowResult::Row(_row) => {
// TODO: assert that data is correct
}
limbo_core::RowResult::IO => {