| Index: Source/core/svg/SVGPathSegClosePath.h
|
| diff --git a/Source/core/svg/SVGPathSegClosePath.h b/Source/core/svg/SVGPathSegClosePath.h
|
| index 6b844f0fd00101a9d94781f27abef9e3cf64b392..697dd5ec3885dddd5a276eb19f09410ed745b85c 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() override
|
| + {
|
| + return adoptRefWillBeNoop(new SVGPathSegClosePath(nullptr));
|
| + }
|
| +
|
| private:
|
| SVGPathSegClosePath(SVGPathElement* element)
|
| : SVGPathSeg(element) { }
|
|
|