Title: [295671] trunk/Source/WebCore/css/parser/CSSPropertyParserHelpers.cpp
Revision
295671
Author
dp...@igalia.com
Date
2022-06-20 02:02:37 -0700 (Mon, 20 Jun 2022)

Log Message

REGRESSION(r295627): [GCC] Unreviewed, fix build error in Debian Stable

error: call to non-'constexpr' function 'void WTF::isIntegralOrPointerType()'.

* Source/WebCore/css/parser/CSSPropertyParserHelpers.cpp:
(WebCore::CSSPropertyParserHelpers::computeMinimumValue): Use
RELEASE_ASSERT_NOT_REACHED_UNDER_CONSTEXPR_CONTEXT

Canonical link: https://commits.webkit.org/251676@main

Modified Paths

Diff

Modified: trunk/Source/WebCore/css/parser/CSSPropertyParserHelpers.cpp (295670 => 295671)


--- trunk/Source/WebCore/css/parser/CSSPropertyParserHelpers.cpp	2022-06-20 08:07:52 UTC (rev 295670)
+++ trunk/Source/WebCore/css/parser/CSSPropertyParserHelpers.cpp	2022-06-20 09:02:37 UTC (rev 295671)
@@ -192,7 +192,7 @@
         return 1.0;
     }
 
-    RELEASE_ASSERT_NOT_REACHED();
+    RELEASE_ASSERT_NOT_REACHED_UNDER_CONSTEXPR_CONTEXT();
 
     return 0.0;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to