Changeset 54539 in webkit
- Timestamp:
- Feb 9, 2010, 1:51:35 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
runtime/JSValue.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r54534 r54539 1 2010-02-09 Janne Koskinen <janne.p.koskinen@digia.com> 2 3 Reviewed by Laszlo Gombos. 4 5 [Qt] use nanval() for Symbian as nonInlineNaN 6 https://bugs.webkit.org/show_bug.cgi?id=34170 7 8 numeric_limits<double>::quiet_NaN is broken in Symbian 9 causing NaN to be evaluated as a number. 10 11 * runtime/JSValue.cpp: 12 (JSC::nonInlineNaN): 13 1 14 2010-02-09 Tamas Szirbucz <szirbucz@inf.u-szeged.hu> 2 15 -
trunk/JavaScriptCore/runtime/JSValue.cpp
r49030 r54539 175 175 NEVER_INLINE double nonInlineNaN() 176 176 { 177 #if OS(SYMBIAN) 178 return nanval(); 179 #else 177 180 return std::numeric_limits<double>::quiet_NaN(); 181 #endif 178 182 } 179 183
Note:
See TracChangeset
for help on using the changeset viewer.