Changeset 58110 in webkit


Ignore:
Timestamp:
Apr 22, 2010 12:55:09 PM (14 years ago)
Author:
steveblock@google.com
Message:

2010-04-22 Steve Block <steveblock@google.com>

Reviewed by Adam Barth.

Update Android to use isfinite, isinf, isnan and signbit from namespace std.
https://bugs.webkit.org/show_bug.cgi?id=37948

  • wtf/MathExtras.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r58104 r58110  
     12010-04-22  Steve Block  <steveblock@google.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        Update Android to use isfinite, isinf, isnan and signbit from namespace std.
     6        https://bugs.webkit.org/show_bug.cgi?id=37948
     7
     8        * wtf/MathExtras.h:
     9
    1102010-04-22  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
    211
  • trunk/JavaScriptCore/wtf/MathExtras.h

    r56015 r58110  
    189189inline float grad2rad(float g) { return g * piFloat / 200.0f; }
    190190
    191 #if !COMPILER(MSVC) && !COMPILER(RVCT) && !OS(ANDROID) && !COMPILER(WINSCW)
     191#if !COMPILER(MSVC) && !COMPILER(RVCT) && !COMPILER(WINSCW)
    192192using std::isfinite;
    193193using std::isinf;
Note: See TracChangeset for help on using the changeset viewer.