Changeset 51197 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 19, 2009, 11:54:50 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r51183 r51197 1 2009-11-19 Laszlo Gombos <[email protected]> 2 3 Reviewed by Darin Adler. 4 5 Remove HAVE(FLOAT_H) guard 6 https://bugs.webkit.org/show_bug.cgi?id=31661 7 8 JavaScriptCore has a dependency on float.h, there is 9 no need to guard float.h. 10 11 * runtime/DatePrototype.cpp: Remove include directive 12 for float.h as it is included in MathExtras.h already. 13 * runtime/Operations.cpp: Ditto. 14 * runtime/UString.cpp: Ditto. 15 * wtf/dtoa.cpp: Ditto. 16 * wtf/MathExtras.h: Remove HAVE(FLOAT_H) guard. 17 * wtf/Platform.h: Ditto. 18 1 19 2009-11-19 Thiago Macieira <[email protected]> 2 20 -
trunk/JavaScriptCore/runtime/DatePrototype.cpp
r50708 r51197 29 29 #include "ObjectPrototype.h" 30 30 #include "DateInstance.h" 31 #include <float.h>32 31 33 32 #if !PLATFORM(MAC) && HAVE(LANGINFO_H) -
trunk/JavaScriptCore/runtime/Operations.cpp
r44224 r51197 29 29 #include <stdio.h> 30 30 #include <wtf/MathExtras.h> 31 32 #if HAVE(FLOAT_H)33 #include <float.h>34 #endif35 31 36 32 namespace JSC { -
trunk/JavaScriptCore/runtime/UString.cpp
r51168 r51197 31 31 #include "Operations.h" 32 32 #include <ctype.h> 33 #include <float.h>34 33 #include <limits.h> 35 34 #include <limits> -
trunk/JavaScriptCore/wtf/MathExtras.h
r49585 r51197 27 27 #define WTF_MathExtras_h 28 28 29 #include <float.h> 29 30 #include <math.h> 30 31 #include <stdlib.h> … … 44 45 #endif 45 46 #include <limits> 46 47 #if HAVE(FLOAT_H)48 #include <float.h>49 #endif50 51 47 #endif 52 48 -
trunk/JavaScriptCore/wtf/Platform.h
r51183 r51197 590 590 #elif PLATFORM(WIN_OS) 591 591 592 #define HAVE_FLOAT_H 1593 592 #if PLATFORM(WINCE) 594 593 #define HAVE_ERRNO_H 0 -
trunk/JavaScriptCore/wtf/dtoa.cpp
r51168 r51197 141 141 #define NO_ERRNO 142 142 #endif 143 #include <float.h>144 143 #include <math.h> 145 144 #include <stdint.h>
Note:
See TracChangeset
for help on using the changeset viewer.