| Index: Source/core/css/BasicShapeFunctions.cpp
|
| diff --git a/Source/core/css/BasicShapeFunctions.cpp b/Source/core/css/BasicShapeFunctions.cpp
|
| index 49390a9f16849261660f39ae384933ae91451567..b4e25064f128431bc4bacc21be72357df9a93c2c 100644
|
| --- a/Source/core/css/BasicShapeFunctions.cpp
|
| +++ b/Source/core/css/BasicShapeFunctions.cpp
|
| @@ -236,7 +236,7 @@ PassRefPtr<BasicShape> basicShapeForValue(const StyleResolverState& state, const
|
| RefPtr<BasicShapePolygon> polygon = BasicShapePolygon::create();
|
|
|
| polygon->setWindRule(polygonValue->windRule());
|
| - const WillBeHeapVector<RefPtrWillBeMember<CSSPrimitiveValue> >& values = polygonValue->values();
|
| + const WillBeHeapVector<RefPtrWillBeMember<CSSPrimitiveValue>>& values = polygonValue->values();
|
| for (unsigned i = 0; i < values.size(); i += 2)
|
| polygon->appendPoint(convertToLength(state, values.at(i).get()), convertToLength(state, values.at(i + 1).get()));
|
|
|
|
|