We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9438e6 commit 197c0ffCopy full SHA for 197c0ff
1 file changed
include/fast_float/float_common.h
@@ -198,12 +198,16 @@ using parse_options = parse_options_t<char>;
198
199
#ifndef FASTFLOAT_ASSERT
200
#define FASTFLOAT_ASSERT(x) \
201
- { ((void)(x)); }
+ { \
202
+ ((void)(x)); \
203
+ }
204
#endif
205
206
#ifndef FASTFLOAT_DEBUG_ASSERT
207
#define FASTFLOAT_DEBUG_ASSERT(x) \
208
209
210
211
212
213
// rust style `try!()` macro, or `?` operator
0 commit comments