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 e9438e6 commit 865bd65Copy full SHA for 865bd65
include/fast_float/float_common.h
@@ -1246,6 +1246,16 @@ constexpr chars_format adjust_for_feature_macros(chars_format fmt) {
1246
}
1247
} // namespace detail
1248
1249
+
1250
+#ifdef __STDCPP_FLOAT64_T__
1251
+template <>
1252
+struct binary_format<std::float64_t> : public binary_format<double> {};
1253
+#endif
1254
+#ifdef __STDCPP_FLOAT32_T__
1255
1256
+struct binary_format<std::float32_t> : public binary_format<float> {};
1257
1258
1259
} // namespace fast_float
1260
1261
#endif
0 commit comments