| Summary: | Fix Compile error: 'bool std::isinf(float)' is not 'constexpr' with GCC 4.6 in C++11 mode | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Seija K. <doremylover123> |
| Component: | Platform | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | dpino, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
|
Description
Seija K.
2023-02-24 06:34:38 PST
Pull request: https://github.com/WebKit/WebKit/pull/10626 Committed 260883@main (d139619c4a1e): <https://commits.webkit.org/260883@main> Reviewed commits have been landed. Closing PR #10626 and removing active labels. This patch has broken Ubuntu 20.04 post-commit build bot (which uses GCC9.4 and we need to maintain until 20th April 2023): https://build.webkit.org/#/builders/595/builds/7860 ``` In file included from /home/buildbot/worker/GTK-Linux-64-bit-Release-Ubuntu-2004-Build/build/Source/WebCore/PAL/pal/text/TextCodecSingleByte.cpp:30: /usr/include/c++/9/mutex:666:5: error: ‘void std::call_once(std::once_flag&, _Callable&&, _Args&& ...) [with _Callable = PAL::tableForEncoding() [with const SingleByteDecodeTable& decodeTable = PAL::iso88593; PAL::SingleByteEncodeTable = WTF::IteratorRange<const std::pair<char16_t, unsigned char>*>]::<lambda()>; _Args = {}]’, declared using local type ‘PAL::tableForEncoding() [with const SingleByteDecodeTable& decodeTable = PAL::iso88593; PAL::SingleByteEncodeTable = WTF::IteratorRange<const std::pair<char16_t, unsigned char>*>]::<lambda()>’, is used but never defined [-fpermissive] 666 | call_once(once_flag& __once, _Callable&& __f, _Args&&... __args) | ^~~~~~~~~ ``` Follow-up pull request: https://github.com/WebKit/WebKit/pull/10752 Restores changes in Source/WebCore/PAL/pal/text/TextCodecSingleByte.cpp. |