Skip to content
Prev Previous commit
Next Next commit
Reformat
  • Loading branch information
zaewc committed Feb 8, 2026
commit 587d890fa03e035386e8374b10bf9c5506a0bc8c
8 changes: 2 additions & 6 deletions include/fast_float/float_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -209,16 +209,12 @@ using parse_options = parse_options_t<char>;

#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
Expand Down
Loading