Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/hotfix/timer_const_expr_error' i…
Browse files Browse the repository at this point in the history
…nto development
  • Loading branch information
jwellbelove committed Jul 2, 2019
2 parents 34327f0 + d715880 commit 48f2d28
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/etl/message_timer.h
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion include/etl/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
4 changes: 4 additions & 0 deletions support/Release notes.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 48f2d28

Please sign in to comment.