Skip to content

Commit c72f008

Browse files
authored
Minor fixup
1 parent 1c9c8af commit c72f008

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

subproject/simple/simple_dragonbox.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1233,8 +1233,8 @@ namespace simple_dragonbox {
12331233
template <class T, unsigned Size>
12341234
static constexpr bool valid_float = std::numeric_limits<T>::is_iec559 &&
12351235
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");
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");
12381238

12391239
constexpr void reverse(char* begin, char* end) {
12401240
while (begin < --end) {

0 commit comments

Comments
 (0)