diff options
-rw-r--r-- | Libraries/LibMarkdown/Text.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Libraries/LibMarkdown/Text.h b/Libraries/LibMarkdown/Text.h index 00542c4e3b..ca24a84a54 100644 --- a/Libraries/LibMarkdown/Text.h +++ b/Libraries/LibMarkdown/Text.h @@ -50,6 +50,9 @@ public: }; Text(Text&& text) = default; + Text() = default; + + Text& operator=(Text&&) = default; const Vector<Span>& spans() const { return m_spans; } |