Ignore:
Timestamp:
May 11, 2010, 8:53:13 PM (15 years ago)
Author:
[email protected]
Message:

Possible Gtk build fix - use ALWAYS_INLINE on functions that were inlined.

  • wtf/text/AtomicString.h:

(WebCore::AtomicString::add): Use ALWAYS_INLINE.

  • wtf/text/WTFString.h:

(WebCore::String::length): Ditto.
(WebCore::String::isEmpty): Ditto.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/text/AtomicString.h

    r59197 r59202  
    118118    static PassRefPtr<StringImpl> add(const UChar*, unsigned length, unsigned existingHash);
    119119    static PassRefPtr<StringImpl> add(const UChar*);
    120     PassRefPtr<StringImpl> add(StringImpl* r)
     120    ALWAYS_INLINE PassRefPtr<StringImpl> add(StringImpl* r)
    121121    {
    122122        if (!r || r->isAtomic())
Note: See TracChangeset for help on using the changeset viewer.