Changeset 51199 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 19, 2009, 12:12:40 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r51198 r51199 1 2009-11-19 Laszlo Gombos <[email protected]> 2 3 Reviewed by Darin Adler. 4 5 Remove HAVE(STRING_H) guard from JavaScriptCore 6 https://bugs.webkit.org/show_bug.cgi?id=31668 7 8 * config.h: 9 * runtime/UString.cpp: 10 1 11 2009-11-19 Dumitru Daniliuc <[email protected]> 2 12 -
trunk/JavaScriptCore/config.h
r50628 r51199 58 58 /* FIXME: if all platforms have these, do they really need #defines? */ 59 59 #define HAVE_STDINT_H 1 60 #define HAVE_STRING_H 161 60 62 61 #define WTF_CHANGES 1 -
trunk/JavaScriptCore/runtime/UString.cpp
r51197 r51199 36 36 #include <stdio.h> 37 37 #include <stdlib.h> 38 #include <string.h> 38 39 #include <wtf/ASCIICType.h> 39 40 #include <wtf/Assertions.h> … … 44 45 #include <wtf/StringExtras.h> 45 46 46 #if HAVE(STRING_H)47 #include <string.h>48 #endif49 47 #if HAVE(STRINGS_H) 50 48 #include <strings.h>
Note:
See TracChangeset
for help on using the changeset viewer.