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
commit 445bd86533
Notes: sideshowbarker 2024-07-19 02:09:43 +09:00

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; }