Ignore:
Timestamp:
Nov 5, 2007, 11:30:22 PM (18 years ago)
Author:
[email protected]
Message:

2007-11-05 Mark Rowe <[email protected]>

Mac build fix.

  • kjs/array_object.cpp: (KJS::ArrayProtoFunc::callAsFunction):
File:
1 edited

Legend:

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

    r27448 r27474  
    206206  }
    207207  case Push: {
    208     for (int n = 0; n < args.size(); n++)
     208    for (unsigned int n = 0; n < args.size(); n++)
    209209      thisObj->put(exec, length + n, args[n]);
    210210    length += args.size();
Note: See TracChangeset for help on using the changeset viewer.