Review URL: http://codereview.chromium.org/6810021
git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7547
ce2b1a6d-e550-0410-aec6-
3dcde31c8c00
malloc(OFFSET_OF(ObjectGroup, objects_[length])));
group->length_ = length;
group->info_ = info;
- CopyWords(group->objects_, handles, length);
+ CopyWords(group->objects_, handles, static_cast<int>(length));
return group;
}
malloc(OFFSET_OF(ImplicitRefGroup, children_[length])));
group->parent_ = parent;
group->length_ = length;
- CopyWords(group->children_, children, length);
+ CopyWords(group->children_, children, static_cast<int>(length));
return group;
}