Ignore:
Timestamp:
Oct 26, 2007, 1:13:26 AM (18 years ago)
Author:
[email protected]
Message:

2007-10-26 Mark Rowe <[email protected]>

Windows build fix.

  • kjs/string_object.cpp: (KJS::StringObjectFuncImp::callAsFunction):
File:
1 edited

Legend:

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

    r27095 r27096  
    837837    ListIterator it = args.begin();
    838838    while (it != args.end()) {
    839       unsigned short u = it->toUInt32(exec);
     839      unsigned short u = static_cast<unsigned short>(it->toUInt32(exec));
    840840      *p++ = UChar(u);
    841841      it++;
Note: See TracChangeset for help on using the changeset viewer.