Changeset 54717 in webkit for trunk/JavaScriptCore
- Timestamp:
- Feb 12, 2010, 2:20:22 AM (15 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSStringRef.h
r48711 r54717 38 38 #endif 39 39 40 #if !defined(WIN32) && !defined(_WIN32) && !defined(__WINSCW__) 40 #if !defined(WIN32) && !defined(_WIN32) && !defined(__WINSCW__) \ 41 && !(defined(__CC_ARM) || defined(__ARMCC__)) /* RVCT */ 41 42 /*! 42 43 @typedef JSChar -
trunk/JavaScriptCore/ChangeLog
r54701 r54717 1 2010-02-12 Kwang Yul Seo <[email protected]> 2 3 Reviewed by Adam Barth. 4 5 Typedef both JSChar and UChar to wchar_t in RVCT. 6 https://bugs.webkit.org/show_bug.cgi?id=34560 7 8 Define both JSChar and UChar to wchar_t as the size 9 of wchar_t is 2 bytes in RVCT. 10 11 * API/JSStringRef.h: 12 * wtf/unicode/qt4/UnicodeQt4.h: 13 1 14 2010-02-11 Geoffrey Garen <[email protected]> 2 15 -
trunk/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h
r51174 r54717 57 57 58 58 // ugly hack to make UChar compatible with JSChar in API/JSStringRef.h 59 #if defined(Q_OS_WIN) || COMPILER(WINSCW) 59 #if defined(Q_OS_WIN) || COMPILER(WINSCW) || COMPILER(RVCT) 60 60 typedef wchar_t UChar; 61 61 #else
Note:
See TracChangeset
for help on using the changeset viewer.