Modified: trunk/Source/WebCore/ChangeLog (270188 => 270189)
--- trunk/Source/WebCore/ChangeLog 2020-11-27 11:03:34 UTC (rev 270188)
+++ trunk/Source/WebCore/ChangeLog 2020-11-27 11:21:36 UTC (rev 270189)
@@ -1,3 +1,11 @@
+2020-11-27 Philippe Normand <pnorm...@igalia.com>
+
+ Unreviewed, clang build fix after r270185
+
+ * platform/graphics/GraphicsTypesGL.h: Fixup nullptr_t namespace.
+ (GCGLSpan::GCGLSpan):
+ (std::numeric_limits<size_t>::max):
+
2020-11-27 Víctor Manuel Jáquez Leal <vjaq...@igalia.com>
[GStreamer] refactor video encoder with WebKit style
Modified: trunk/Source/WebCore/platform/graphics/GraphicsTypesGL.h (270188 => 270189)
--- trunk/Source/WebCore/platform/graphics/GraphicsTypesGL.h 2020-11-27 11:03:34 UTC (rev 270188)
+++ trunk/Source/WebCore/platform/graphics/GraphicsTypesGL.h 2020-11-27 11:21:36 UTC (rev 270189)
@@ -69,7 +69,7 @@
: data(array)
{ }
template<typename U>
- GCGLSpan(const GCGLSpan<U, Extent>& other, std::enable_if_t<std::is_convertible_v<U(*)[], T(*)[]>, nullptr_t> = nullptr)
+ GCGLSpan(const GCGLSpan<U, Extent>& other, std::enable_if_t<std::is_convertible_v<U(*)[], T(*)[]>, std::nullptr_t> = nullptr)
: data(other.data)
{ }
T& operator[](size_t i) { RELEASE_ASSERT(data && i < bufSize); return data[i]; }
@@ -90,12 +90,12 @@
, bufSize(Sz)
{ }
template<typename U, size_t UExtent>
- GCGLSpan(const GCGLSpan<U, UExtent>& other, std::enable_if_t<std::is_convertible_v<U(*)[], T(*)[]>, nullptr_t> = nullptr)
+ GCGLSpan(const GCGLSpan<U, UExtent>& other, std::enable_if_t<std::is_convertible_v<U(*)[], T(*)[]>, std::nullptr_t> = nullptr)
: data(other.data)
, bufSize(other.bufSize)
{ }
template<typename U, size_t inlineCapacity>
- GCGLSpan(WTF::Vector<U, inlineCapacity>& array, std::enable_if_t<std::is_convertible_v<U(*)[], T(*)[]>, nullptr_t> = nullptr)
+ GCGLSpan(WTF::Vector<U, inlineCapacity>& array, std::enable_if_t<std::is_convertible_v<U(*)[], T(*)[]>, std::nullptr_t> = nullptr)
: data(array.data())
, bufSize(array.size())
{ }