Title: [270313] trunk/Source/WebCore
Revision
270313
Author
[email protected]
Date
2020-12-01 10:20:34 -0800 (Tue, 01 Dec 2020)

Log Message

Unreviewed. Fix the reaches end of non-void function warning since r270294.

No new tests. No new behaviors.

* Modules/mediastream/RTCRtpScriptTransformerContext.h:
(WebCore::RTCRtpScriptTransformerContext::requestKeyFrame): Add default clause returning void.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (270312 => 270313)


--- trunk/Source/WebCore/ChangeLog	2020-12-01 18:01:31 UTC (rev 270312)
+++ trunk/Source/WebCore/ChangeLog	2020-12-01 18:20:34 UTC (rev 270313)
@@ -1,3 +1,12 @@
+2020-12-01  Lauro Moura  <[email protected]>
+
+        Unreviewed. Fix the reaches end of non-void function warning since r270294.
+
+        No new tests. No new behaviors.
+
+        * Modules/mediastream/RTCRtpScriptTransformerContext.h:
+        (WebCore::RTCRtpScriptTransformerContext::requestKeyFrame): Add default clause returning void.
+
 2020-11-30  Simon Fraser  <[email protected]>
 
         [WK1] Only the first wheel event in a gesture should be cancelable

Modified: trunk/Source/WebCore/Modules/mediastream/RTCRtpScriptTransformerContext.h (270312 => 270313)


--- trunk/Source/WebCore/Modules/mediastream/RTCRtpScriptTransformerContext.h	2020-12-01 18:01:31 UTC (rev 270312)
+++ trunk/Source/WebCore/Modules/mediastream/RTCRtpScriptTransformerContext.h	2020-12-01 18:20:34 UTC (rev 270313)
@@ -72,6 +72,8 @@
     case MediaType::Video:
         m_backend->requestKeyFrame();
         return { };
+    default:
+        return { };
     }
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to