Title: [266749] trunk/Source/WebCore
Revision
266749
Author
[email protected]
Date
2020-09-08 14:10:28 -0700 (Tue, 08 Sep 2020)

Log Message

REGRESSION(r266681) [GTK] constexpr build failure in LTS/Debian with GCC 8
https://bugs.webkit.org/show_bug.cgi?id=216280

Patch by Lauro Moura <[email protected]> on 2020-09-08
Reviewed by Darin Adler and Alex Christensen.

* platform/text/TextCodecSingleByte.cpp:
(WebCore::tableForDecoding):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (266748 => 266749)


--- trunk/Source/WebCore/ChangeLog	2020-09-08 21:08:46 UTC (rev 266748)
+++ trunk/Source/WebCore/ChangeLog	2020-09-08 21:10:28 UTC (rev 266749)
@@ -1,3 +1,13 @@
+2020-09-08  Lauro Moura <[email protected]>
+
+        REGRESSION(r266681) [GTK] constexpr build failure in LTS/Debian with GCC 8
+        https://bugs.webkit.org/show_bug.cgi?id=216280
+
+        Reviewed by Darin Adler and Alex Christensen.
+
+        * platform/text/TextCodecSingleByte.cpp:
+        (WebCore::tableForDecoding):
+
 2020-09-08  Alex Christensen  <[email protected]>
 
         new URL("#") should throw an error

Modified: trunk/Source/WebCore/platform/text/TextCodecSingleByte.cpp (266748 => 266749)


--- trunk/Source/WebCore/platform/text/TextCodecSingleByte.cpp	2020-09-08 21:08:46 UTC (rev 266748)
+++ trunk/Source/WebCore/platform/text/TextCodecSingleByte.cpp	2020-09-08 21:10:28 UTC (rev 266749)
@@ -221,7 +221,7 @@
     RELEASE_ASSERT_NOT_REACHED();
 }
 
-static constexpr const SingleByteDecodeTable& tableForDecoding(TextCodecSingleByte::Encoding encoding)
+static const SingleByteDecodeTable& tableForDecoding(TextCodecSingleByte::Encoding encoding)
 {
     switch (encoding) {
     case TextCodecSingleByte::Encoding::ISO_8859_3:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to