Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 428294 Details for
Bug 577470
net-libs/webkit-gtk-2.10.8 with clang-3.8: Source/JavaScriptCore/runtime/Options.cpp:613:67: error: use of undeclared identifier 'isnan'
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
webkit-gtk-2.10.8_fix_clang.patch
webkit-gtk-2.10.8_fix_clang.patch (text/plain), 734 bytes, created by
Franz Trischberger
on 2016-03-15 12:59:41 UTC
(
hide
)
Description:
webkit-gtk-2.10.8_fix_clang.patch
Filename:
MIME Type:
Creator:
Franz Trischberger
Created:
2016-03-15 12:59:41 UTC
Size:
734 bytes
patch
obsolete
>--- Source/JavaScriptCore/runtime/Options.cpp 2016-03-15 13:35:20.559319789 +0100 >+++ Source/JavaScriptCore/runtime/Options.cpp.new 2016-03-15 13:35:08.988320570 +0100 >@@ -610,7 +610,7 @@ > case Options::Type::unsignedType: > return m_entry.unsignedVal == other.m_entry.unsignedVal; > case Options::Type::doubleType: >- return (m_entry.doubleVal == other.m_entry.doubleVal) || (isnan(m_entry.doubleVal) && isnan(other.m_entry.doubleVal)); >+ return (m_entry.doubleVal == other.m_entry.doubleVal) || (std::isnan(m_entry.doubleVal) && std::isnan(other.m_entry.doubleVal)); > case Options::Type::int32Type: > return m_entry.int32Val == other.m_entry.int32Val; > case Options::Type::optionRangeType:
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 577470
:
428292
| 428294