Title: [232297] trunk/Source/WebCore
Revision
232297
Author
[email protected]
Date
2018-05-30 10:06:09 -0700 (Wed, 30 May 2018)

Log Message

Unreviewed, silence a -Wreturn-type warning

* css/SVGCSSComputedStyleDeclaration.cpp:
(WebCore::glyphOrientationToCSSPrimitiveValue):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (232296 => 232297)


--- trunk/Source/WebCore/ChangeLog	2018-05-30 16:46:02 UTC (rev 232296)
+++ trunk/Source/WebCore/ChangeLog	2018-05-30 17:06:09 UTC (rev 232297)
@@ -1,3 +1,10 @@
+2018-05-30  Michael Catanzaro  <[email protected]>
+
+        Unreviewed, silence a -Wreturn-type warning
+
+        * css/SVGCSSComputedStyleDeclaration.cpp:
+        (WebCore::glyphOrientationToCSSPrimitiveValue):
+
 2018-05-30  Alexey Proskuryakov  <[email protected]>
 
         Build fix attempt after https://trac.webkit.org/r232198

Modified: trunk/Source/WebCore/css/SVGCSSComputedStyleDeclaration.cpp (232296 => 232297)


--- trunk/Source/WebCore/css/SVGCSSComputedStyleDeclaration.cpp	2018-05-30 16:46:02 UTC (rev 232296)
+++ trunk/Source/WebCore/css/SVGCSSComputedStyleDeclaration.cpp	2018-05-30 17:06:09 UTC (rev 232297)
@@ -44,6 +44,8 @@
     case GlyphOrientation::Auto:
         return nullptr;
     }
+
+    RELEASE_ASSERT_NOT_REACHED();
 }
 
 static RefPtr<CSSValue> strokeDashArrayToCSSValueList(const Vector<SVGLengthValue>& dashes)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to