Title: [281739] trunk/Source/WebCore
Revision
281739
Author
[email protected]
Date
2021-08-29 02:18:56 -0700 (Sun, 29 Aug 2021)

Log Message

Unreviewed. Remove the build warning below since r280958.
warning: control reaches end of non-void function [-Wreturn-type]

No new tests, no new behavioral changes.

* Modules/mediastream/RTCRtpSFrameTransform.cpp:
(WebCore::errorTypeFromInformation):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (281738 => 281739)


--- trunk/Source/WebCore/ChangeLog	2021-08-29 09:07:16 UTC (rev 281738)
+++ trunk/Source/WebCore/ChangeLog	2021-08-29 09:18:56 UTC (rev 281739)
@@ -1,3 +1,13 @@
+2021-08-29  Joonghun Park  <[email protected]>
+
+        Unreviewed. Remove the build warning below since r280958.
+        warning: control reaches end of non-void function [-Wreturn-type]
+
+        No new tests, no new behavioral changes.
+
+        * Modules/mediastream/RTCRtpSFrameTransform.cpp:
+        (WebCore::errorTypeFromInformation):
+
 2021-08-28  Cameron McCormack  <[email protected]>
 
         Miscellaneous typo fixes

Modified: trunk/Source/WebCore/Modules/mediastream/RTCRtpSFrameTransform.cpp (281738 => 281739)


--- trunk/Source/WebCore/Modules/mediastream/RTCRtpSFrameTransform.cpp	2021-08-29 09:07:16 UTC (rev 281738)
+++ trunk/Source/WebCore/Modules/mediastream/RTCRtpSFrameTransform.cpp	2021-08-29 09:18:56 UTC (rev 281739)
@@ -112,6 +112,8 @@
         return RTCRtpSFrameTransformErrorEvent::Type::Syntax;
     case RTCRtpSFrameTransformer::Error::Other:
         return RTCRtpSFrameTransformErrorEvent::Type::Other;
+    default:
+        RELEASE_ASSERT_NOT_REACHED();
     }
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to