Changeset 35164 in webkit for trunk/JavaScriptCore/wtf


Ignore:
Timestamp:
Jul 14, 2008, 1:04:50 PM (17 years ago)
Author:
[email protected]
Message:

2008-07-14 David Hyatt <[email protected]>

Buidl fix. Make sure the second insertBefore method returns a value.

  • wtf/ListHashSet.h: (WTF::::insertBefore):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/ListHashSet.h

    r35144 r35164  
    487487    pair<typename ListHashSet<T, U>::iterator, bool> ListHashSet<T, U>::insertBefore(const ValueType& beforeValue, const ValueType& newValue)
    488488    {
    489         insertBefore(find(beforeValue), newValue);
     489        return insertBefore(find(beforeValue), newValue);
    490490    }
    491491
Note: See TracChangeset for help on using the changeset viewer.