summaryrefslogtreecommitdiff
path: root/nonprism/webkit2gtk/isnan.patch
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2017-10-30 10:31:15 +0100
committerAndreas Grapentin <andreas@grapentin.org>2017-10-30 10:31:35 +0100
commit434db42f4a7dbe2489c58e1572754b0b7f2c9df0 (patch)
tree0295e22cc664bdcf5096b4ea65f2d105c9399686 /nonprism/webkit2gtk/isnan.patch
parent660a17cf89d1f6c41b5c57009d733af62ae57232 (diff)
downloadabslibre-434db42f4a7dbe2489c58e1572754b0b7f2c9df0.tar.gz
abslibre-434db42f4a7dbe2489c58e1572754b0b7f2c9df0.tar.bz2
abslibre-434db42f4a7dbe2489c58e1572754b0b7f2c9df0.zip
nonprism/webkit2gtk: updated to 2.18.2
Diffstat (limited to 'nonprism/webkit2gtk/isnan.patch')
-rw-r--r--nonprism/webkit2gtk/isnan.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/nonprism/webkit2gtk/isnan.patch b/nonprism/webkit2gtk/isnan.patch
deleted file mode 100644
index cafa89a0d..000000000
--- a/nonprism/webkit2gtk/isnan.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -u -r webkitgtk-2.10.8/Source/JavaScriptCore/runtime/Options.cpp webkitgtk-2.10.8-isnan/Source/JavaScriptCore/runtime/Options.cpp
---- webkitgtk-2.10.8/Source/JavaScriptCore/runtime/Options.cpp 2016-03-11 09:59:07.000000000 +0100
-+++ webkitgtk-2.10.8-isnan/Source/JavaScriptCore/runtime/Options.cpp 2016-03-13 13:51:55.114836547 +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: