Changeset 13089 in webkit for trunk/JavaScriptCore/kjs/operations.h
- Timestamp:
- Mar 2, 2006, 1:12:06 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/operations.h
r12317 r13089 29 29 class JSValue; 30 30 31 #if __APPLE__31 #if PLATFORM(DARWIN) 32 32 inline bool isNaN(double d) { return isnan(d); } 33 33 inline bool isInf(double d) { return isinf(d); } … … 35 35 inline bool isNegInf(double d) { return isinf(d) && d < 0; } 36 36 #else 37 /**38 * @return True if d is not a number (platform support required).39 */40 37 bool isNaN(double d); 41 /**42 * @return True if d is infinite (platform support required).43 */44 38 bool isInf(double d); 45 39 bool isPosInf(double d);
Note:
See TracChangeset
for help on using the changeset viewer.