From 42c1f67bfa64120cb202a67795709479745b39af Mon Sep 17 00:00:00 2001 From: Prasenjit Sengupta Date: Tue, 4 Sep 2018 15:01:38 -0700 Subject: [PATCH] Fix extra semicolon warning in list.h --- include/etl/list.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/etl/list.h b/include/etl/list.h index 84045b1b6..4adedcab9 100644 --- a/include/etl/list.h +++ b/include/etl/list.h @@ -392,8 +392,8 @@ namespace etl etl::ipool* p_node_pool; ///< The pool of data nodes used in the list. node_t terminal_node; ///< The node that acts as the list start and end. size_type MAX_SIZE; ///< The maximum size of the list. - bool pool_is_shared; ///< If true then the pool is shared between lists. - ETL_DECLARE_DEBUG_COUNT; ///< Internal debugging. + bool pool_is_shared; ///< If true then the pool is shared between lists. + ETL_DECLARE_DEBUG_COUNT ///< Internal debugging. }; //***************************************************************************