Swapped event and current state parameters for state transition

This commit is contained in:
John Wellbelove 2018-09-12 17:39:02 +01:00
parent 0ec2a1f06f
commit eb406eafea
2 changed files with 9 additions and 5 deletions

View File

@ -37,13 +37,13 @@ SOFTWARE.
/// Definitions of the ETL version
///\ingroup utilities
#define ETL_VERSION "11.17.0"
#define ETL_VERSION_W L"11.17.0"
#define ETL_VERSION_U16 u"11.17.0"
#define ETL_VERSION_U32 U"11.17.0"
#define ETL_VERSION "11.17.1"
#define ETL_VERSION_W L"11.17.1"
#define ETL_VERSION_U16 u"11.17.1"
#define ETL_VERSION_U32 U"11.17.1"
#define ETL_VERSION_MAJOR 11
#define ETL_VERSION_MINOR 17
#define ETL_VERSION_PATCH 0
#define ETL_VERSION_PATCH 1
#define ETL_VERSION_VALUE ((ETL_VERSION_MAJOR * 10000) + (ETL_VERSION_MINOR * 100) + ETL_VERSION_PATCH)
#endif

View File

@ -1,3 +1,7 @@
===============================================================================
11.17.1
Swapped event and current state parameters for transition constructor.
===============================================================================
11.17.0
Added etl::state_chart