Skip to content

Commit 7262d94

Browse files
committed
lint
1 parent 23f16ad commit 7262d94

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

include/fast_float/float_common.h

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -198,16 +198,12 @@ using parse_options = parse_options_t<char>;
198198

199199
#ifndef FASTFLOAT_ASSERT
200200
#define FASTFLOAT_ASSERT(x) \
201-
{ \
202-
((void)(x)); \
203-
}
201+
{ ((void)(x)); }
204202
#endif
205203

206204
#ifndef FASTFLOAT_DEBUG_ASSERT
207205
#define FASTFLOAT_DEBUG_ASSERT(x) \
208-
{ \
209-
((void)(x)); \
210-
}
206+
{ ((void)(x)); }
211207
#endif
212208

213209
// rust style `try!()` macro, or `?` operator

0 commit comments

Comments
 (0)