Removed redundant semi-colon

This commit is contained in:
jwellbelove 2017-07-04 10:05:17 +01:00 committed by John Wellbelove
parent 3d7adea287
commit 1cfcf80cb0
2 changed files with 6 additions and 6 deletions

View File

@ -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
#endif

View File

@ -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
#endif