From 98a09ca07cc6e8341a8900addec210c896acde97 Mon Sep 17 00:00:00 2001 From: jwellbelove Date: Tue, 13 Dec 2016 09:46:03 +0000 Subject: [PATCH] Missing closing ) --- src/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform.h b/src/platform.h index a8e5e544..cfbb4eed 100644 --- a/src/platform.h +++ b/src/platform.h @@ -77,7 +77,7 @@ SOFTWARE. #endif // Check to see if the compiler supports static_assert. -#if (defined(ETL_COMPILER_MICROSOFT) && (_MSC_VER >= 1600) || \ +#if (defined(ETL_COMPILER_MICROSOFT) && (_MSC_VER >= 1600)) || \ (defined(ETL_COMPILER_GCC) && (__cplusplus >= 201103L)) #define ETL_STATIC_ASSERT_SUPPORTED #endif