We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c9c8af commit c72f008Copy full SHA for c72f008
subproject/simple/simple_dragonbox.h
@@ -1233,8 +1233,8 @@ namespace simple_dragonbox {
1233
template <class T, unsigned Size>
1234
static constexpr bool valid_float = std::numeric_limits<T>::is_iec559 &&
1235
std::numeric_limits<T>::radix == 2 && sizeof(T) == Size;
1236
- static_assert(valid_float<float, 4>, "simple_dragonbox: float may not be IEEE 754 binary32");
1237
- static_assert(valid_float<double, 8>, "simple_dragonbox: double may not be IEEE 754 binary64");
+ static_assert(valid_float<float, 4>, "simple_dragonbox: float may not be IEEE-754 binary32");
+ static_assert(valid_float<double, 8>, "simple_dragonbox: double may not be IEEE-754 binary64");
1238
1239
constexpr void reverse(char* begin, char* end) {
1240
while (begin < --end) {
0 commit comments