Skip to content

Commit 9b18b70

Browse files
committed
Fix for __float128 unused parameter
1 parent 2f8e4d0 commit 9b18b70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/to_chars.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ boost::charconv::to_chars_result boost::charconv::to_chars( char* first, char* l
662662

663663
#ifdef BOOST_CHARCONV_HAS_FLOAT128
664664

665-
boost::charconv::to_chars_result boost::charconv::to_chars(char* first, char* last, __float128 value, boost::charconv::chars_format fmt, int precision) noexcept
665+
boost::charconv::to_chars_result boost::charconv::to_chars(char* first, char* last, __float128 value, boost::charconv::chars_format fmt) noexcept
666666
{
667667
return boost::charconv::detail::to_chars_float_impl(first, last, value, fmt, -1);
668668
}

0 commit comments

Comments
 (0)