summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGPathByteStreamSource.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGPathByteStreamSource.h')
-rw-r--r--WebCore/svg/SVGPathByteStreamSource.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/WebCore/svg/SVGPathByteStreamSource.h b/WebCore/svg/SVGPathByteStreamSource.h
index 2537ad2..6895c73 100644
--- a/WebCore/svg/SVGPathByteStreamSource.h
+++ b/WebCore/svg/SVGPathByteStreamSource.h
@@ -35,7 +35,8 @@ public:
return adoptPtr(new SVGPathByteStreamSource(stream));
}
- virtual ~SVGPathByteStreamSource();
+private:
+ SVGPathByteStreamSource(SVGPathByteStream*);
virtual bool hasMoreData() const;
virtual bool moveToNextToken() { return true; }
@@ -52,9 +53,6 @@ public:
virtual bool parseCurveToQuadraticSmoothSegment(FloatPoint&);
virtual bool parseArcToSegment(float&, float&, float&, bool&, bool&, FloatPoint&);
-private:
- SVGPathByteStreamSource(SVGPathByteStream*);
-
#if COMPILER(MSVC)
#pragma warning(disable: 4701)
#endif