From 662e4bf91851865d26c591e5d56b1e772373703e Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Mon, 16 Sep 2024 17:25:04 -0400 Subject: [PATCH] Committed a broken file. --- fsm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsm.hpp b/fsm.hpp index 28dcddd..5898ea4 100644 --- a/fsm.hpp +++ b/fsm.hpp @@ -18,7 +18,7 @@ public: template void event(E event, Types... args); - void state(S next_state) + void state(S next_state) { _state = next_state; }