Index: third_party/WebKit/Source/core/svg/SVGPathBuilder.h |
diff --git a/third_party/WebKit/Source/core/svg/SVGPathBuilder.h b/third_party/WebKit/Source/core/svg/SVGPathBuilder.h |
index 5f3cea9f4f08c54109a30aab9a8060f0630fa171..6cbe279fb5c1327aa4c667ce5fdce6158dad00c2 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGPathBuilder.h |
+++ b/third_party/WebKit/Source/core/svg/SVGPathBuilder.h |
@@ -32,13 +32,12 @@ class Path; |
class SVGPathBuilder final : public SVGPathConsumer { |
public: |
- SVGPathBuilder(Path& path) : m_path(path), m_closed(true) { } |
+ SVGPathBuilder(Path& path) : m_path(path) { } |
private: |
void emitSegment(const PathSegmentData&) override; |
Path& m_path; |
- bool m_closed; |
}; |
} // namespace blink |