1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:57:44 +00:00

LibMarkdown: Remove unused Paragraph::add_line() declaration

This commit is contained in:
Linus Groh 2021-03-26 18:20:32 +01:00 committed by Andreas Kling
parent cd82fd24e2
commit 8fe7983cc5

View file

@ -59,8 +59,6 @@ public:
virtual String render_to_html() const override;
virtual String render_for_terminal(size_t view_width = 0) const override;
void add_line(NonnullOwnPtr<Line>&& line);
private:
NonnullOwnPtrVector<Line> m_lines;
};