aboutsummaryrefslogtreecommitdiffstats
path: root/testing/chromium/chromium-c99math.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/chromium/chromium-c99math.patch')
-rw-r--r--testing/chromium/chromium-c99math.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/testing/chromium/chromium-c99math.patch b/testing/chromium/chromium-c99math.patch
deleted file mode 100644
index 37ed224c62..0000000000
--- a/testing/chromium/chromium-c99math.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- chromium-13.0.754.0.orig/base/float_util.h
-+++ chromium-13.0.754.0/base/float_util.h
-@@ -19,7 +19,7 @@
-
- inline bool IsFinite(const double& number) {
- #if defined(OS_POSIX)
-- return finite(number) != 0;
-+ return isfinite(number) != 0;
- #elif defined(OS_WIN)
- return _finite(number) != 0;
- #endif