Changeset 58142 in webkit for trunk/JavaScriptCore
- Timestamp:
- Apr 22, 2010, 8:10:48 PM (15 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r58138 r58142 1 2010-04-22 Steve Block <[email protected]> 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 1 10 2010-04-22 Fumitoshi Ukai <[email protected]> 2 11 -
trunk/JavaScriptCore/wtf/MathExtras.h
r58118 r58142 189 189 inline float grad2rad(float g) { return g * piFloat / 200.0f; } 190 190 191 #if !COMPILER(MSVC) && !COMPILER(RVCT) && ! OS(ANDROID) && !COMPILER(WINSCW)191 #if !COMPILER(MSVC) && !COMPILER(RVCT) && !COMPILER(WINSCW) 192 192 using std::isfinite; 193 193 using std::isinf;
Note:
See TracChangeset
for help on using the changeset viewer.