Index: Source/core/svg/SVGParserUtilities.h |
diff --git a/Source/core/svg/SVGParserUtilities.h b/Source/core/svg/SVGParserUtilities.h |
index 3cee63b40ac11e837eefd2e3c251b15e44503036..476fbabbb1936ddd587cc5a88bb55727036e3534 100644 |
--- a/Source/core/svg/SVGParserUtilities.h |
+++ b/Source/core/svg/SVGParserUtilities.h |
@@ -49,13 +49,6 @@ bool parseArcFlag(const LChar*& ptr, const LChar* end, bool& flag); |
bool parseArcFlag(const UChar*& ptr, const UChar* end, bool& flag); |
template <typename CharType> |
-bool parseFloatPoint(const CharType*& current, const CharType* end, FloatPoint&); |
-template <typename CharType> |
-bool parseFloatPoint2(const CharType*& current, const CharType* end, FloatPoint&, FloatPoint&); |
-template <typename CharType> |
-bool parseFloatPoint3(const CharType*& current, const CharType* end, FloatPoint&, FloatPoint&, FloatPoint&); |
- |
-template <typename CharType> |
inline bool skipOptionalSVGSpaces(const CharType*& ptr, const CharType* end) |
{ |
while (ptr < end && isHTMLSpace<CharType>(*ptr)) |