Ignore:
Timestamp:
Nov 13, 2007, 11:54:40 AM (18 years ago)
Author:
[email protected]
Message:

Windows build fix.

  • bindings/c/c_utility.cpp: (KJS::Bindings::convertUTF8ToUTF16):
  • kjs/ustring.cpp: (KJS::UString::UTF8String):
  • wtf/unicode/UTF8.cpp: (WTF::Unicode::ConvertUTF8ToUTF16):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/ustring.cpp

    r27750 r27756  
    12821282  // Convert to runs of 8-bit characters.
    12831283  char* p = buffer.data();
    1284   const ::UChar* d = &data()->uc;
     1284  const ::UChar* d = reinterpret_cast<const ::UChar*>(&data()->uc);
    12851285  ConversionResult result = ConvertUTF16ToUTF8(&d, d + length, &p, p + buffer.size(), strict);
    12861286  if (result != conversionOK)
Note: See TracChangeset for help on using the changeset viewer.