diff options
Diffstat (limited to 'main/xulrunner/xpcom-c99math.patch')
-rw-r--r-- | main/xulrunner/xpcom-c99math.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/main/xulrunner/xpcom-c99math.patch b/main/xulrunner/xpcom-c99math.patch deleted file mode 100644 index 3222c7f206..0000000000 --- a/main/xulrunner/xpcom-c99math.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- ./xpcom/ds/nsMathUtils.h.orig -+++ ./xpcom/ds/nsMathUtils.h -@@ -151,7 +151,11 @@ - // NOTE: '!!' casts an int to bool without spamming MSVC warning C4800. - return !!_finite(d); - #else -- return finite(d); -+#ifdef _GLIBCXX_CMATH -+ return std::isfinite(d); -+#else -+ return isfinite(d); -+#endif - #endif - } - |