Changeset 16608 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Sep 27, 2006, 9:35:29 PM (19 years ago)
Author:
sullivan
Message:
  • kjs/function.cpp: (KJS::FunctionImp::getParameterName): removed assertion that displeased gcc 4.0.1 (build 5420): ASSERT(static_cast<size_t>(index) == index);
File:
1 edited

Legend:

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

    r16607 r16608  
    267267Identifier FunctionImp::getParameterName(int index)
    268268{
    269     ASSERT(static_cast<size_t>(index) == index);
    270269    if (static_cast<size_t>(index) > parameters.size())
    271270        return Identifier::null();
Note: See TracChangeset for help on using the changeset viewer.