From c03e14758f53eeeecfe8067dd2eff9e9d32c1edd Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 26 Sep 2018 16:51:33 +0200 Subject: fix(core): Add missing 'FSM_NAME' associated constant This one got lost while moving from the prototype code to the proper library. --- finito-door/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'finito-door/src/lib.rs') diff --git a/finito-door/src/lib.rs b/finito-door/src/lib.rs index a4aad8dcbbe3..cfbaa4abe617 100644 --- a/finito-door/src/lib.rs +++ b/finito-door/src/lib.rs @@ -40,6 +40,7 @@ pub enum DoorAction { } impl FSM for DoorState { + const FSM_NAME: &'static str = "door"; type Event = DoorEvent; type Action = DoorAction; -- cgit 1.4.1