Skip to content

Commit 3d53da7

Browse files
committed
Change terminal formating
1 parent 0bc45a2 commit 3d53da7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/decimal/string.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ auto to_string(const DecimalType value)
1818
BOOST_DECIMAL_REQUIRES_RETURN(detail::is_decimal_floating_point_v, DecimalType, std::string)
1919
{
2020
char buffer[64];
21-
auto r = to_chars(buffer, buffer + sizeof(buffer), value, chars_format::fixed, 6);
21+
auto r = to_chars(buffer, buffer + sizeof(buffer), value);
2222
*r.ptr = '\0';
2323
return std::string(buffer);
2424
}

0 commit comments

Comments
 (0)