Title: [254394] trunk/Source/WTF
Revision
254394
Author
[email protected]
Date
2020-01-11 00:07:40 -0800 (Sat, 11 Jan 2020)

Log Message

Unreviewed, fix RunLoopGeneric's RunLoop::cycle

* wtf/generic/RunLoopGeneric.cpp:
(WTF::RunLoop::cycle):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (254393 => 254394)


--- trunk/Source/WTF/ChangeLog	2020-01-11 06:54:45 UTC (rev 254393)
+++ trunk/Source/WTF/ChangeLog	2020-01-11 08:07:40 UTC (rev 254394)
@@ -1,3 +1,10 @@
+2020-01-11  Yusuke Suzuki  <[email protected]>
+
+        Unreviewed, fix RunLoopGeneric's RunLoop::cycle
+
+        * wtf/generic/RunLoopGeneric.cpp:
+        (WTF::RunLoop::cycle):
+
 2020-01-10  Myles C. Maxfield  <[email protected]>
 
         REGRESSION(r185816): In the Hong Kong locale, navigator.language reports it's in the Taiwan locale

Modified: trunk/Source/WTF/wtf/generic/RunLoopGeneric.cpp (254393 => 254394)


--- trunk/Source/WTF/wtf/generic/RunLoopGeneric.cpp	2020-01-11 06:54:45 UTC (rev 254393)
+++ trunk/Source/WTF/wtf/generic/RunLoopGeneric.cpp	2020-01-11 08:07:40 UTC (rev 254394)
@@ -221,6 +221,7 @@
 RunLoop::CycleResult RunLoop::cycle(RunLoopMode)
 {
     iterate();
+    return CycleResult::Continue;
 }
 
 void RunLoop::schedule(const AbstractLocker&, Ref<TimerBase::ScheduledTask>&& task)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to