1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

LibMarkdown: Add a Text(String) constructor

This commit is contained in:
AnotherTest 2020-09-20 18:06:40 +04:30 committed by Andreas Kling
parent 445bd86533
commit 7640cb8ec4
2 changed files with 6 additions and 0 deletions

View file

@ -49,6 +49,7 @@ public:
Style style;
};
explicit Text(String&& text);
Text(Text&& text) = default;
Text() = default;