Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 932579 | Differences between
and this patch

Collapse All | Expand All

(-)a/include/boost/charconv/to_chars.hpp (+6 lines)
Lines 81-95 BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, float valu Link Here
81
                                             chars_format fmt = chars_format::general) noexcept;
81
                                             chars_format fmt = chars_format::general) noexcept;
82
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, double value,
82
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, double value,
83
                                             chars_format fmt = chars_format::general) noexcept;
83
                                             chars_format fmt = chars_format::general) noexcept;
84
85
#ifndef BOOST_MATH_UNSUPPORTED_LONG_DOUBLE
84
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, long double value,
86
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, long double value,
85
                                             chars_format fmt = chars_format::general) noexcept;
87
                                             chars_format fmt = chars_format::general) noexcept;
88
#endif
86
89
87
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, float value,
90
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, float value,
88
                                             chars_format fmt, int precision) noexcept;
91
                                             chars_format fmt, int precision) noexcept;
89
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, double value, 
92
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, double value, 
90
                                             chars_format fmt, int precision) noexcept;
93
                                             chars_format fmt, int precision) noexcept;
94
95
#ifndef BOOST_MATH_UNSUPPORTED_LONG_DOUBLE
91
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, long double value,
96
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, long double value,
92
                                             chars_format fmt, int precision) noexcept;
97
                                             chars_format fmt, int precision) noexcept;
98
#endif
93
99
94
#ifdef BOOST_CHARCONV_HAS_QUADMATH
100
#ifdef BOOST_CHARCONV_HAS_QUADMATH
95
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, __float128 value,
101
BOOST_CHARCONV_DECL to_chars_result to_chars(char* first, char* last, __float128 value,

Return to bug 932579