Index: Source/core/svg/SVGPathSegClosePath.h |
diff --git a/Source/core/svg/SVGPathSegClosePath.h b/Source/core/svg/SVGPathSegClosePath.h |
index 6b844f0fd00101a9d94781f27abef9e3cf64b392..321c407b158b8e024ecf26f4a7e0337c344ccbe8 100644 |
--- a/Source/core/svg/SVGPathSegClosePath.h |
+++ b/Source/core/svg/SVGPathSegClosePath.h |
@@ -33,6 +33,11 @@ public: |
return adoptRefWillBeNoop(new SVGPathSegClosePath(element)); |
} |
+ virtual PassRefPtrWillBeRawPtr<SVGPathSeg> clone() |
+ { |
+ return adoptRefWillBeNoop(new SVGPathSegClosePath(0)); |
+ } |
+ |
private: |
SVGPathSegClosePath(SVGPathElement* element) |
: SVGPathSeg(element) { } |