diff options
Diffstat (limited to 'src/nvim/assert_defs.h')
-rw-r--r-- | src/nvim/assert_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/assert_defs.h b/src/nvim/assert_defs.h index cfc27ee994..5a6474862c 100644 --- a/src/nvim/assert_defs.h +++ b/src/nvim/assert_defs.h @@ -61,7 +61,7 @@ # define STATIC_ASSERT_STATEMENT(cond, msg) _Static_assert(cond, msg) // if we're dealing with gcc >= 4.6 in C99 mode, we can still use // _Static_assert but we need to suppress warnings, this is pretty ugly. -#elif (!defined(__clang__) && !defined(__INTEL_COMPILER)) && /* NOLINT(whitespace/parens)*/ \ +#elif (!defined(__clang__) && !defined(__INTEL_COMPILER)) && \ (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) # define STATIC_ASSERT_STATEMENT(cond, msg) _Static_assert(cond, msg) |