--- a/Source/WebCore/platform/graphics/SourceBrush.cppg 2023-03-30 07:39:25.494584562 -0400 +++ b/Source/WebCore/platform/graphics/SourceBrush.cpp 2023-03-30 07:39:52.297918262 -0400 @@ -65,12 +65,12 @@ void SourceBrush::setGradient(Ref&& gradient, const AffineTransform& spaceTransform) { - m_brush = { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } }; + m_brush = Brush { Brush::LogicalGradient { WTFMove(gradient), spaceTransform } }; } void SourceBrush::setPattern(Ref&& pattern) { - m_brush = { WTFMove(pattern) }; + m_brush = Brush { WTFMove(pattern) }; } WTF::TextStream& operator<<(TextStream& ts, const SourceBrush& brush)