From 9971b753e340168e8b8c26aa0c119b57727526c6 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Thu, 22 Apr 2010 20:55:32 +0100 Subject: Remove ANDROID guard now that Android fix to MathExtras.h has been upstreamed Android's stlport now provides isinf etc. in the std namespace (see https://android-git.corp.google.com/g/41036). This allows us to remove the Android special-case from MathExtras.h (see https://android-git.corp.google.com/g/41037). This change has now been upstreamed in http://trac.webkit.org/changeset/58110 so we can remove the ANDROID guard marking this change. Change-Id: I7c06a5a5a8f9a0a7909a649e68424688bf02893a --- JavaScriptCore/wtf/MathExtras.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'JavaScriptCore') diff --git a/JavaScriptCore/wtf/MathExtras.h b/JavaScriptCore/wtf/MathExtras.h index 8e93ee8..089e8ff 100644 --- a/JavaScriptCore/wtf/MathExtras.h +++ b/JavaScriptCore/wtf/MathExtras.h @@ -186,8 +186,6 @@ inline float deg2turn(float d) { return d / 360.0f; } inline float rad2grad(float r) { return r * 200.0f / piFloat; } inline float grad2rad(float g) { return g * piFloat / 200.0f; } -// ANDROID -// TODO: Upstream to webkit.org #if !COMPILER(MSVC) && !COMPILER(RVCT) && !COMPILER(WINSCW) using std::isfinite; using std::isinf; -- cgit v1.1