Index: Source/platform/geometry/FloatPolygon.h |
diff --git a/Source/platform/geometry/FloatPolygon.h b/Source/platform/geometry/FloatPolygon.h |
index 875c321633d76ffcf77523f63df1d8186b0fb55a..10f6cb8f5b430d548aa918f93ca7105f24b9a01a 100644 |
--- a/Source/platform/geometry/FloatPolygon.h |
+++ b/Source/platform/geometry/FloatPolygon.h |
@@ -49,7 +49,7 @@ template <class> struct ValueToString; |
class PLATFORM_EXPORT FloatPolygon { |
public: |
- FloatPolygon(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fillRule); |
+ FloatPolygon(PassOwnPtr<Vector<FloatPoint>> vertices, WindRule fillRule); |
const FloatPoint& vertexAt(unsigned index) const { return (*m_vertices)[index]; } |
unsigned numberOfVertices() const { return m_vertices->size(); } |
@@ -71,7 +71,7 @@ private: |
bool containsNonZero(const FloatPoint&) const; |
bool containsEvenOdd(const FloatPoint&) const; |
- OwnPtr<Vector<FloatPoint> > m_vertices; |
+ OwnPtr<Vector<FloatPoint>> m_vertices; |
WindRule m_fillRule; |
FloatRect m_boundingBox; |
bool m_empty; |