From c6995239499efc8f0e5c0ebf370676e74c736d01 Mon Sep 17 00:00:00 2001 From: Laurent Cheylus Date: Sun, 10 May 2026 00:36:53 +0200 Subject: [PATCH] datatypes.fsm: remove unused variables (#27063) --- vlib/datatypes/fsm/fsm.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/datatypes/fsm/fsm.v b/vlib/datatypes/fsm/fsm.v index 43d63b64a..0071fd0d7 100644 --- a/vlib/datatypes/fsm/fsm.v +++ b/vlib/datatypes/fsm/fsm.v @@ -4,10 +4,10 @@ pub type EventHandlerFn = fn (receiver voidptr, from string, to string) pub type ConditionFn = fn (receiver voidptr, from string, to string) bool -fn dummy_event_handler_fn(receiver voidptr, from string, to string) { +fn dummy_event_handler_fn(_ voidptr, _ string, _ string) { } -fn dummy_condition_fn(receiver voidptr, from string, to string) bool { +fn dummy_condition_fn(_ voidptr, _ string, _ string) bool { return true } -- 2.39.5