Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 897749 Details for
Bug 932579
dev-libs/boost-1.85.0-r1 fails to compile on ppc64
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Remove cruft codeblock
04-remove_cruft_codeblock.diff (text/plain), 1.46 KB, created by
ernsteiswuerfel
on 2024-07-15 21:30:46 UTC
(
hide
)
Description:
Remove cruft codeblock
Filename:
MIME Type:
Creator:
ernsteiswuerfel
Created:
2024-07-15 21:30:46 UTC
Size:
1.46 KB
patch
obsolete
>diff --git a/src/to_chars.cpp b/src/to_chars.cpp >index 8e9b4721..7bcec5e4 100644 >--- a/libs/charconv/src/to_chars.cpp >+++ b/libs/charconv/src/to_chars.cpp >@@ -621,44 +621,6 @@ boost::charconv::to_chars_result boost::charconv::to_chars(char* first, char* la > return boost::charconv::detail::to_chars_float_impl(first, last, value, fmt, precision); > } > >-#else >- >-boost::charconv::to_chars_result boost::charconv::to_chars( char* first, char* last, long double value, >- boost::charconv::chars_format fmt, int precision) noexcept >-{ >- if (std::isnan(value)) >- { >- bool is_negative = false; >- if (std::signbit(value)) >- { >- is_negative = true; >- *first++ = '-'; >- } >- >- if (issignaling(value)) >- { >- std::memcpy(first, "nan(snan)", 9); >- return { first + 9 + static_cast<int>(is_negative), std::errc() }; >- } >- else >- { >- if (is_negative) >- { >- std::memcpy(first, "nan(ind)", 8); >- return { first + 9, std::errc() }; >- } >- else >- { >- std::memcpy(first, "nan", 3); >- return { first + 3, std::errc() }; >- } >- } >- } >- >- // Fallback to printf >- return boost::charconv::detail::to_chars_printf_impl(first, last, value, fmt, precision); >-} >- > #endif > > #ifdef BOOST_CHARCONV_HAS_QUADMATH
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 932579
:
894083
|
895025
|
897746
|
897747
|
897748
| 897749 |
897750