| Index: Source/core/svg/SVGPathStringBuilder.cpp
|
| diff --git a/Source/core/svg/SVGPathStringBuilder.cpp b/Source/core/svg/SVGPathStringBuilder.cpp
|
| index aad9deec5c0663e3718d7ca6f7d90b6a8f588cda..4ef58daa7acfedbf553e41add4ee9ee629e6efa3 100644
|
| --- a/Source/core/svg/SVGPathStringBuilder.cpp
|
| +++ b/Source/core/svg/SVGPathStringBuilder.cpp
|
| @@ -75,7 +75,7 @@ static void emitCommand2Arg(StringBuilder& stringBuilder, char commandChar, cons
|
| stringBuilder.append(' ');
|
| }
|
|
|
| -void SVGPathStringBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode)
|
| +void SVGPathStringBuilder::moveTo(const FloatPoint& targetPoint, PathCoordinateMode mode)
|
| {
|
| emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'M' : 'm', targetPoint);
|
| }
|
|
|