From 57b3864449e87ec4b3a093dcdcc9e5b0bf1f8293 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Fri, 11 Dec 2015 20:58:52 +0000 Subject: [PATCH] Missing closing ) --- ipool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipool.h b/ipool.h index 59d80e25..b5c3fbe8 100644 --- a/ipool.h +++ b/ipool.h @@ -325,7 +325,7 @@ namespace etl #if defined(_DEBUG) || defined(DEBUG) if (ETL_ASSERT(items_allocated < MAX_SIZE && !in_use_flags.test(next_free), pool_no_allocation())) #else - if (ETL_ASSERT(items_allocated < MAX_SIZE, pool_no_allocation()) + if (ETL_ASSERT(items_allocated < MAX_SIZE, pool_no_allocation())) #endif { T* result = new(&p_buffer[next_free]) T(); @@ -351,7 +351,7 @@ namespace etl #if defined(_DEBUG) || defined(DEBUG) if (ETL_ASSERT(items_allocated < MAX_SIZE && !in_use_flags.test(next_free), pool_no_allocation())) #else - if (ETL_ASSERT(items_allocated < MAX_SIZE, pool_no_allocation()) + if (ETL_ASSERT(items_allocated < MAX_SIZE, pool_no_allocation())) #endif { T* result = new(&p_buffer[next_free]) T(initial);