Changeset 15155 in webkit for trunk/JavaScriptCore/kjs/operations.cpp
- Timestamp:
- Jul 4, 2006, 9:13:32 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/operations.cpp
r13821 r15155 24 24 #include "operations.h" 25 25 26 #include "object.h" 26 27 #include <math.h> 27 28 #include <stdio.h> 29 #include <wtf/MathExtras.h> 28 30 29 31 #if HAVE(FUNC_ISINF) && HAVE(IEEEFP_H) … … 35 37 #endif 36 38 37 #include "object.h"38 39 39 namespace KJS { 40 40 41 41 #if !PLATFORM(DARWIN) 42 // FIXME: should probably be inlined on other platforms too, and controlled exclusively 43 // by HAVE macros 44 45 42 43 // FIXME: Should probably be inlined on non-Darwin platforms too, and controlled exclusively 44 // by HAVE macros rather than PLATFORM. 45 46 // FIXME: Merge with isnan in MathExtras.h and remove this one entirely. 46 47 bool isNaN(double d) 47 48 { … … 55 56 } 56 57 58 // FIXME: Merge with isinf in MathExtras.h and remove this one entirely. 57 59 bool isInf(double d) 58 60 {
Note:
See TracChangeset
for help on using the changeset viewer.