| Index: Source/platform/geometry/FloatPolygonTest.cpp
|
| diff --git a/Source/platform/geometry/FloatPolygonTest.cpp b/Source/platform/geometry/FloatPolygonTest.cpp
|
| index 4ff2936324b0d9b901375dda5dfc5943e1288cdc..47c4740a3f05c3a0c36d7e3f0a52fb91a2f47bc9 100644
|
| --- a/Source/platform/geometry/FloatPolygonTest.cpp
|
| +++ b/Source/platform/geometry/FloatPolygonTest.cpp
|
| @@ -40,7 +40,7 @@ public:
|
| FloatPolygonTestValue(const float* coordinates, unsigned coordinatesLength, WindRule fillRule)
|
| {
|
| ASSERT(!(coordinatesLength % 2));
|
| - OwnPtr<Vector<FloatPoint> > vertices = adoptPtr(new Vector<FloatPoint>(coordinatesLength / 2));
|
| + OwnPtr<Vector<FloatPoint>> vertices = adoptPtr(new Vector<FloatPoint>(coordinatesLength / 2));
|
| for (unsigned i = 0; i < coordinatesLength; i += 2)
|
| (*vertices)[i / 2] = FloatPoint(coordinates[i], coordinates[i + 1]);
|
| m_polygon = adoptPtr(new FloatPolygon(vertices.release(), fillRule));
|
|
|