Changeset 196071 in webkit


Ignore:
Timestamp:
Feb 3, 2016 10:21:01 AM (8 years ago)
Author:
andersca@apple.com
Message:

Fix BlockPtr's call operator
https://bugs.webkit.org/show_bug.cgi?id=153836

Reviewed by Enrica Casucci.

  • wtf/BlockPtr.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r195970 r196071  
     12016-02-03  Anders Carlsson  <andersca@apple.com>
     2
     3        Fix BlockPtr's call operator
     4        https://bugs.webkit.org/show_bug.cgi?id=153836
     5
     6        Reviewed by Enrica Casucci.
     7
     8        * wtf/BlockPtr.h:
     9
    1102016-02-01  Said Abou-Hallawa  <sabouhallawa@apple.com>
    211
  • trunk/Source/WTF/wtf/BlockPtr.h

    r195611 r196071  
    8585    bool operator!() const { return !m_block; }
    8686
    87     R operator()(Args&&... arguments) const
     87    R operator()(Args... arguments) const
    8888    {
    8989        ASSERT(m_block);
Note: See TracChangeset for help on using the changeset viewer.