Skip to content

Commit 340a72e

Browse files
committedFeb 20, 2024
Fix ADL issue
1 parent 9b18b70 commit 340a72e

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
@@ -763,7 +763,7 @@ boost::charconv::to_chars_result boost::charconv::to_chars(char* first, char* la
763763
precision = 6;
764764
}
765765

766-
return boost::charconv::to_chars_float_impl(first, last, static_cast<__float128>(value), fmt, precision);
766+
return boost::charconv::detail::to_chars_float_impl(first, last, static_cast<__float128>(value), fmt, precision);
767767
}
768768
#endif
769769

0 commit comments

Comments
 (0)
Please sign in to comment.