Changeset 27201 in webkit for trunk/JavaScriptCore/kjs/nodes2string.cpp
- Timestamp:
- Oct 28, 2007, 7:52:04 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes2string.cpp
r27193 r27201 23 23 #include "nodes.h" 24 24 25 #include "operations.h" // isNaN, isInf25 #include <wtf/MathExtras.h> 26 26 #include <wtf/StringExtras.h> 27 27 #include <wtf/unicode/Unicode.h> … … 140 140 { 141 141 double number = string.toDouble(false, false); 142 if (is NaN(number) || isInf(number))142 if (isnan(number) || isinf(number)) 143 143 return false; 144 144 return string == UString::from(number);
Note:
See TracChangeset
for help on using the changeset viewer.