From 6a62e03a7d2ae795f0c361cd155eba000c7b51cd Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Thu, 1 Aug 2024 09:12:53 +0300 Subject: [PATCH] simulator: Silence unused variable warning --- simulator/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator/main.rs b/simulator/main.rs index 4e26eea9f..f422a01f6 100644 --- a/simulator/main.rs +++ b/simulator/main.rs @@ -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 => {