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

LibMarkdown: Make Text default-constructible and move-assignable

This commit is contained in:
AnotherTest 2020-09-20 16:43:19 +04:30 committed by Andreas Kling
parent aa65f664a9
commit 445bd86533

View file

@ -50,6 +50,9 @@ public:
};
Text(Text&& text) = default;
Text() = default;
Text& operator=(Text&&) = default;
const Vector<Span>& spans() const { return m_spans; }