Title: [219239] trunk/Source/WTF
Revision
219239
Author
utatane....@gmail.com
Date
2017-07-06 22:08:22 -0700 (Thu, 06 Jul 2017)

Log Message

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

* wtf/Threading.cpp:
(WTF::Thread::addToThreadGroup):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (219238 => 219239)


--- trunk/Source/WTF/ChangeLog	2017-07-07 04:56:23 UTC (rev 219238)
+++ trunk/Source/WTF/ChangeLog	2017-07-07 05:08:22 UTC (rev 219239)
@@ -1,3 +1,11 @@
+2017-07-06  Yusuke Suzuki  <utatane....@gmail.com>
+
+        Unreviewed, build fix after r219238
+        https://bugs.webkit.org/show_bug.cgi?id=174081
+
+        * wtf/Threading.cpp:
+        (WTF::Thread::addToThreadGroup):
+
 2017-07-05  Yusuke Suzuki  <utatane....@gmail.com>
 
         [WTF] Implement WTF::ThreadGroup

Modified: trunk/Source/WTF/wtf/Threading.cpp (219238 => 219239)


--- trunk/Source/WTF/wtf/Threading.cpp	2017-07-07 04:56:23 UTC (rev 219238)
+++ trunk/Source/WTF/wtf/Threading.cpp	2017-07-07 05:08:22 UTC (rev 219239)
@@ -162,7 +162,7 @@
 
 void Thread::addToThreadGroup(const AbstractLocker& destructionMutexLocker, ThreadGroup& threadGroup)
 {
-    ASSERT(canAddToThreadGroup(destructionMutexLocker));
+    ASSERT_UNUSED(destructionMutexLocker, canAddToThreadGroup(destructionMutexLocker));
     m_threadGroups.add(&threadGroup);
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to