Title: [264289] trunk/Source/WebCore
Revision
264289
Author
hironori.fu...@sony.com
Date
2020-07-12 18:11:21 -0700 (Sun, 12 Jul 2020)

Log Message

[WinCairo][Clang] Unreviewed build fix for r264272
https://bugs.webkit.org/show_bug.cgi?id=214204
<rdar://problem/65414170>

clang-cl reported:

> ..\..\Source\WebCore\platform\graphics/ColorUtilities.h(200,26): error: no template named 'ComponentTraits'
>     constexpr auto min = ComponentTraits<typename ColorType::ComponentType>::minValue;
>                          ^

* platform/graphics/ColorUtilities.cpp: Removed #include "ColorTypes.h".
* platform/graphics/ColorUtilities.h: Added #include "ColorTypes.h".

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (264288 => 264289)


--- trunk/Source/WebCore/ChangeLog	2020-07-12 22:53:26 UTC (rev 264288)
+++ trunk/Source/WebCore/ChangeLog	2020-07-13 01:11:21 UTC (rev 264289)
@@ -1,3 +1,18 @@
+2020-07-12  Fujii Hironori  <hironori.fu...@sony.com>
+
+        [WinCairo][Clang] Unreviewed build fix for r264272
+        https://bugs.webkit.org/show_bug.cgi?id=214204
+        <rdar://problem/65414170>
+
+        clang-cl reported:
+
+        > ..\..\Source\WebCore\platform\graphics/ColorUtilities.h(200,26): error: no template named 'ComponentTraits'
+        >     constexpr auto min = ComponentTraits<typename ColorType::ComponentType>::minValue;
+        >                          ^
+
+        * platform/graphics/ColorUtilities.cpp: Removed #include "ColorTypes.h".
+        * platform/graphics/ColorUtilities.h: Added #include "ColorTypes.h".
+
 2020-07-12  Said Abou-Hallawa  <sabouhall...@apple.com>
 
         [macOS]: A HEIF image, selected from the OpenPanel, should be converted to an accepted MIME type

Modified: trunk/Source/WebCore/platform/graphics/ColorUtilities.cpp (264288 => 264289)


--- trunk/Source/WebCore/platform/graphics/ColorUtilities.cpp	2020-07-12 22:53:26 UTC (rev 264288)
+++ trunk/Source/WebCore/platform/graphics/ColorUtilities.cpp	2020-07-13 01:11:21 UTC (rev 264289)
@@ -27,7 +27,6 @@
 #include "ColorUtilities.h"
 
 #include "ColorConversion.h"
-#include "ColorTypes.h"
 
 namespace WebCore {
 

Modified: trunk/Source/WebCore/platform/graphics/ColorUtilities.h (264288 => 264289)


--- trunk/Source/WebCore/platform/graphics/ColorUtilities.h	2020-07-12 22:53:26 UTC (rev 264288)
+++ trunk/Source/WebCore/platform/graphics/ColorUtilities.h	2020-07-13 01:11:21 UTC (rev 264289)
@@ -25,6 +25,7 @@
 
 #pragma once
 
+#include "ColorTypes.h"
 #include <algorithm>
 #include <cmath>
 #include <math.h>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to