Mac build fix.
* kjs/array_object.cpp:
(KJS::ArrayProtoFunc::callAsFunction):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@27474
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-11-05 Mark Rowe <mrowe@apple.com>
+
+ Mac build fix.
+
+ * kjs/array_object.cpp:
+ (KJS::ArrayProtoFunc::callAsFunction):
+
2007-11-05 Adam Roben <aroben@apple.com>
Windows build fix
break;
}
case Push: {
- for (int n = 0; n < args.size(); n++)
+ for (unsigned int n = 0; n < args.size(); n++)
thisObj->put(exec, length + n, args[n]);
length += args.size();
thisObj->put(exec, exec->propertyNames().length, jsNumber(length), DontEnum | DontDelete);