From 35d6fc533cbfa3cea085c9422a4bd1928e00a1e4 Mon Sep 17 00:00:00 2001 From: "EXPROGROUP\\john.wellbelove" Date: Thu, 10 May 2018 15:26:23 +0100 Subject: [PATCH] Fixed compile error when ETL_DEBUG_COUNT not defined --- include/etl/debug_count.h | 14 +++++++------- include/etl/version.h | 4 ++-- support/Release notes.txt | 4 ++++ 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/include/etl/debug_count.h b/include/etl/debug_count.h index 3aeede54..e3672d32 100644 --- a/include/etl/debug_count.h +++ b/include/etl/debug_count.h @@ -122,16 +122,16 @@ namespace etl int32_t count; }; +} #else -#define ETL_DECLARE_DEBUG_COUNT -#define ETL_INCREMENT_DEBUG_COUNT -#define ETL_DECREMENT_DEBUG_COUNT -#define ETL_ADD_DEBUG_COUNT(n) -#define ETL_SUBTRACT_DEBUG_COUNT(n) -#define ETL_RESET_DEBUG_COUNT + #define ETL_DECLARE_DEBUG_COUNT + #define ETL_INCREMENT_DEBUG_COUNT + #define ETL_DECREMENT_DEBUG_COUNT + #define ETL_ADD_DEBUG_COUNT(n) + #define ETL_SUBTRACT_DEBUG_COUNT(n) + #define ETL_RESET_DEBUG_COUNT #endif // ETL_DEBUG_COUNT -} #endif diff --git a/include/etl/version.h b/include/etl/version.h index 21282bce..fa2e0a6d 100644 --- a/include/etl/version.h +++ b/include/etl/version.h @@ -37,10 +37,10 @@ SOFTWARE. /// Definitions of the ETL version ///\ingroup utilities -#define ETL_VERSION "11.9.1" +#define ETL_VERSION "11.9.2" #define ETL_VERSION_MAJOR 11 #define ETL_VERSION_MINOR 9 -#define ETL_VERSION_PATCH 1 +#define ETL_VERSION_PATCH 2 #endif diff --git a/support/Release notes.txt b/support/Release notes.txt index 7fec4cc5..09ce8ee4 100644 --- a/support/Release notes.txt +++ b/support/Release notes.txt @@ -1,3 +1,7 @@ +=============================================================================== +11.9.2 +Fixed compile error when ETL_DEBUG_COUNT is not defined. + =============================================================================== 11.9.1 Fix Github issue #73 (Timers)