clang format

This commit is contained in:
Pavel Novikov 2025-09-29 21:41:56 +03:00
parent e9438e64ba
commit 197c0ffca7
No known key found for this signature in database
GPG Key ID: F2C305CAE4167D14

View File

@ -198,12 +198,16 @@ using parse_options = parse_options_t<char>;
#ifndef FASTFLOAT_ASSERT #ifndef FASTFLOAT_ASSERT
#define FASTFLOAT_ASSERT(x) \ #define FASTFLOAT_ASSERT(x) \
{ ((void)(x)); } { \
((void)(x)); \
}
#endif #endif
#ifndef FASTFLOAT_DEBUG_ASSERT #ifndef FASTFLOAT_DEBUG_ASSERT
#define FASTFLOAT_DEBUG_ASSERT(x) \ #define FASTFLOAT_DEBUG_ASSERT(x) \
{ ((void)(x)); } { \
((void)(x)); \
}
#endif #endif
// rust style `try!()` macro, or `?` operator // rust style `try!()` macro, or `?` operator