diff --git a/include/fast_float/float_common.h b/include/fast_float/float_common.h index 34eaa01..1316be3 100644 --- a/include/fast_float/float_common.h +++ b/include/fast_float/float_common.h @@ -198,16 +198,12 @@ using parse_options = parse_options_t; #ifndef FASTFLOAT_ASSERT #define FASTFLOAT_ASSERT(x) \ - { \ - ((void)(x)); \ - } + { ((void)(x)); } #endif #ifndef FASTFLOAT_DEBUG_ASSERT #define FASTFLOAT_DEBUG_ASSERT(x) \ - { \ - ((void)(x)); \ - } + { ((void)(x)); } #endif // rust style `try!()` macro, or `?` operator