From 1cfcf80cb0b5b86579f5a09b6180dcdc34e5bcd0 Mon Sep 17 00:00:00 2001 From: jwellbelove Date: Tue, 4 Jul 2017 10:05:17 +0100 Subject: [PATCH] Removed redundant semi-colon --- src/fsm.h | 6 +++--- src/fsm_generator.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/fsm.h b/src/fsm.h index b6425823..7bd6b343 100644 --- a/src/fsm.h +++ b/src/fsm.h @@ -143,8 +143,8 @@ namespace etl virtual fsm_state_id_t process_event(etl::imessage_router& source, const etl::imessage& message) = 0; - virtual fsm_state_id_t on_enter_state() { return state_id; }; // By default, do nothing. - virtual void on_exit_state() {}; // By default, do nothing. + virtual fsm_state_id_t on_enter_state() { return state_id; } // By default, do nothing. + virtual void on_exit_state() {} // By default, do nothing. // The state id. const etl::fsm_state_id_t state_id; @@ -1135,4 +1135,4 @@ namespace etl #define max(a,b) (((a) > (b)) ? (a) : (b)) #endif -#endif \ No newline at end of file +#endif diff --git a/src/fsm_generator.h b/src/fsm_generator.h index 4a1d7d35..a5879b0a 100644 --- a/src/fsm_generator.h +++ b/src/fsm_generator.h @@ -143,8 +143,8 @@ namespace etl virtual fsm_state_id_t process_event(etl::imessage_router& source, const etl::imessage& message) = 0; - virtual fsm_state_id_t on_enter_state() { return state_id; }; // By default, do nothing. - virtual void on_exit_state() {}; // By default, do nothing. + virtual fsm_state_id_t on_enter_state() { return state_id; } // By default, do nothing. + virtual void on_exit_state() {} // By default, do nothing. // The state id. const etl::fsm_state_id_t state_id; @@ -546,4 +546,4 @@ namespace etl #define max(a,b) (((a) > (b)) ? (a) : (b)) #endif -#endif \ No newline at end of file +#endif