We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c6a6c2 commit 8f49511Copy full SHA for 8f49511
include/fast_float/float_common.h
@@ -39,8 +39,10 @@ typedef uint_fast16_t am_digits;
39
// The number of bits in the limb.
40
typedef uint_fast8_t limb_t;
41
42
+// Type for enum chars_format.
43
typedef uint_fast8_t chars_format_t;
44
45
+// Type for base.
46
typedef uint_fast8_t base_t;
47
48
enum class chars_format : chars_format_t;
@@ -105,7 +107,7 @@ using parse_options = parse_options_t<char>;
105
107
106
108
namespace fast_float {
109
template <typename To, typename From>
-FASTFLOAT_CONSTEXPR20 To bit_cast(const From &from) {
110
+FASTFLOAT_CONSTEXPR20 To bit_cast(const From &from) noexcept {
111
#if FASTFLOAT_HAS_BIT_CAST
112
return std::bit_cast<To>(from);
113
#else
0 commit comments