* platform/mac/HTMLConverter.mm:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@165642
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-03-14 Ryosuke Niwa <rniwa@webkit.org>
+
+ Remove an unused function fix builds.
+
+ * platform/mac/HTMLConverter.mm:
+
2014-03-14 Frédéric Wang <fred.wang@free.fr>
FontCache: Replace DEPRECATED_DEFINE_STATIC_LOCAL with static NeverDestroyed<T>.
}
}
-static inline BOOL _getFloat(DOMCSSPrimitiveValue *primitiveValue, CGFloat *val)
-{
- if (!val)
- return NO;
- float result;
- bool haveResult = floatValueFromPrimitiveValue(*core(primitiveValue), result);
- if (haveResult && val)
- *val = result;
- return haveResult;
-}
-
- (BOOL)_getComputedFloat:(CGFloat *)val forNode:(DOMNode *)node property:(NSString *)key
{
bool haveResult = false;