Changeset 219239 in webkit


Ignore:
Timestamp:
Jul 6, 2017 10:08:22 PM (7 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, build fix after r219238
https://bugs.webkit.org/show_bug.cgi?id=174081

  • wtf/Threading.cpp:

(WTF::Thread::addToThreadGroup):

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r219238 r219239  
     12017-07-06  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, build fix after r219238
     4        https://bugs.webkit.org/show_bug.cgi?id=174081
     5
     6        * wtf/Threading.cpp:
     7        (WTF::Thread::addToThreadGroup):
     8
    192017-07-05  Yusuke Suzuki  <utatane.tea@gmail.com>
    210
  • trunk/Source/WTF/wtf/Threading.cpp

    r219238 r219239  
    163163void Thread::addToThreadGroup(const AbstractLocker& destructionMutexLocker, ThreadGroup& threadGroup)
    164164{
    165     ASSERT(canAddToThreadGroup(destructionMutexLocker));
     165    ASSERT_UNUSED(destructionMutexLocker, canAddToThreadGroup(destructionMutexLocker));
    166166    m_threadGroups.add(&threadGroup);
    167167}
Note: See TracChangeset for help on using the changeset viewer.