From d715880d37c138810422387bb5fd34759c1a4db9 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Tue, 2 Jul 2019 12:51:00 +0100 Subject: [PATCH] Removed ETL_IF_CONSTEXPR from etl::message_timer 'tick()' --- include/etl/message_timer.h | 2 +- include/etl/version.h | 2 +- support/Release notes.txt | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/include/etl/message_timer.h b/include/etl/message_timer.h index 4e5541213..8aa9c18e2 100644 --- a/include/etl/message_timer.h +++ b/include/etl/message_timer.h @@ -441,7 +441,7 @@ namespace etl { if (enabled) { - if ETL_IF_CONSTEXPR(ETL_TIMER_UPDATES_ENABLED) + if (ETL_TIMER_UPDATES_ENABLED) { // We have something to do? bool has_active = !active_list.empty(); diff --git a/include/etl/version.h b/include/etl/version.h index bde5c74c9..085e524de 100644 --- a/include/etl/version.h +++ b/include/etl/version.h @@ -39,7 +39,7 @@ SOFTWARE. #define ETL_VERSION_MAJOR 14 #define ETL_VERSION_MINOR 27 -#define ETL_VERSION_PATCH 0 +#define ETL_VERSION_PATCH 1 #define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) ETL_STRINGIFY(ETL_VERSION_MINOR) ETL_STRINGIFY(ETL_VERSION_PATCH) #define ETL_VERSION_W ETL_WIDE_STRING(ETL_CONCAT(ETL_CONCAT(ETL_VERSION_MAJOR, ETL_VERSION_MINOR), ETL_VERSION_PATCH)) diff --git a/support/Release notes.txt b/support/Release notes.txt index 997084eba..8f2cd9502 100644 --- a/support/Release notes.txt +++ b/support/Release notes.txt @@ -1,3 +1,7 @@ +=============================================================================== +14.27.1 +Removed ETL_IF_CONSTEXPR from etl::message_timer 'tick()' + =============================================================================== 14.27.0 ETL's random number generators are now non-polymorphic by default.