Changeset 43205 in webkit for trunk/JavaScriptCore/wtf


Ignore:
Timestamp:
May 4, 2009, 10:37:50 PM (16 years ago)
Author:
[email protected]
Message:

2009-05-04 Maciej Stachowiak <[email protected]>

Rubber stamped by Gavin.

  • inline Vector::resize for a ~1.5% speedup on string-tagcloud
  • wtf/Vector.h: (WTF::Vector::resize): Inline
File:
1 edited

Legend:

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

    r43144 r43205  
    693693
    694694    template<typename T, size_t inlineCapacity>
    695     void Vector<T, inlineCapacity>::resize(size_t size)
     695    inline void Vector<T, inlineCapacity>::resize(size_t size)
    696696    {
    697697        if (size <= m_size)
Note: See TracChangeset for help on using the changeset viewer.