Changeset 31208 in webkit for trunk/JavaScriptCore/wtf/MathExtras.h
- Timestamp:
- Mar 21, 2008, 4:14:49 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/MathExtras.h
r29663 r31208 96 96 inline double wtf_atan2(double x, double y) 97 97 { 98 staticdouble posInf = std::numeric_limits<double>::infinity();99 staticdouble negInf = -std::numeric_limits<double>::infinity();100 staticdouble nan = std::numeric_limits<double>::quiet_NaN();98 double posInf = std::numeric_limits<double>::infinity(); 99 double negInf = -std::numeric_limits<double>::infinity(); 100 double nan = std::numeric_limits<double>::quiet_NaN(); 101 101 102 102 double result = nan;
Note:
See TracChangeset
for help on using the changeset viewer.