diff options
Diffstat (limited to 'WebCore/svg/SVGPathSegClosePath.h')
-rw-r--r-- | WebCore/svg/SVGPathSegClosePath.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/WebCore/svg/SVGPathSegClosePath.h b/WebCore/svg/SVGPathSegClosePath.h index 635c970..8f074ed 100644 --- a/WebCore/svg/SVGPathSegClosePath.h +++ b/WebCore/svg/SVGPathSegClosePath.h @@ -31,13 +31,12 @@ namespace WebCore { class SVGPathSegClosePath : public SVGPathSeg { public: static PassRefPtr<SVGPathSegClosePath> create() { return adoptRef(new SVGPathSegClosePath); } - virtual ~SVGPathSegClosePath(); + +private: + SVGPathSegClosePath() { } virtual unsigned short pathSegType() const { return PATHSEG_CLOSEPATH; } virtual String pathSegTypeAsLetter() const { return "Z"; } - -private: - SVGPathSegClosePath(); }; } // namespace WebCore |