Changeset 39585 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jan 4, 2009, 10:00:58 AM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r39577 r39585 1 2009-01-04 Darin Adler <[email protected]> 2 3 Reviewed by David Kilzer. 4 5 Bug 15114: Provide compile-time assertions for sizeof(UChar), sizeof(DeprecatedChar), etc. 6 https://bugs.webkit.org/show_bug.cgi?id=15114 7 8 * wtf/unicode/Unicode.h: Assert size of UChar. There is no DeprecatedChar any more. 9 1 10 2009-01-03 Sam Weinig <[email protected]> 2 11 -
trunk/JavaScriptCore/wtf/unicode/Unicode.h
r39554 r39585 23 23 #define WTF_UNICODE_H 24 24 25 #include <wtf/ Platform.h>25 #include <wtf/Assertions.h> 26 26 27 27 #if USE(QT4_UNICODE) … … 33 33 #endif 34 34 35 COMPILE_ASSERT(sizeof(UChar) == 2, UCharIsTwoBytes); 36 35 37 #endif // WTF_UNICODE_H
Note:
See TracChangeset
for help on using the changeset viewer.