mirror of
https://github.com/boostorg/charconv.git
synced 2026-02-18 01:52:18 +00:00
Add __float128 overload
This commit is contained in:
@@ -778,6 +778,11 @@ BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, double val
|
||||
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, long double value,
|
||||
chars_format fmt = chars_format::general, int precision = -1 ) noexcept;
|
||||
|
||||
#ifdef BOOST_HAS_FLOAT128
|
||||
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, __float128 value,
|
||||
chars_format fmt = chars_format::general, int precision = -1 ) noexcept;
|
||||
#endif
|
||||
|
||||
} // namespace charconv
|
||||
} // namespace boost
|
||||
|
||||
|
||||
Reference in New Issue
Block a user