[Webkit-unassigned] [Bug 163599] [GTK] REGRESSION(r207396) Build broken with Clang.
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Oct 18 18:01:35 PDT 2016
https://bugs.webkit.org/show_bug.cgi?id=163599
--- Comment #2 from Carlos Alberto Lopez Perez <clopez at igalia.com> ---
Tested. The patch below fixes the build:
--- a/Source/WebCore/css/CSSPrimitiveValue.cpp
+++ b/Source/WebCore/css/CSSPrimitiveValue.cpp
@@ -936,9 +936,9 @@ ExceptionOr<String> CSSPrimitiveValue::getStringValue() const
case CSS_FONT_FAMILY:
return String { m_value.fontFamily->familyName };
case CSS_VALUE_ID:
- return String { valueName(m_value.valueID) };
+ return String { valueName(m_value.valueID).string() };
case CSS_PROPERTY_ID:
- return String { propertyName(m_value.propertyID) };
+ return String { propertyName(m_value.propertyID).string() };
default:
return Exception { INVALID_ACCESS_ERR };
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20161019/72342998/attachment-0001.html>
More information about the webkit-unassigned
mailing list