Fix bug caused by uninitialized member
All checks were successful
on-push / build-and-test (push) Successful in 27s

This commit is contained in:
2025-12-05 14:51:59 +01:00
parent d77e76fc95
commit 22e44600e4

View File

@@ -27,12 +27,14 @@ namespace Art::Paperback::Carousel
Text::
Text(Text const& other)
: _data{other._data}
: _convention{other._convention},
_data{other._data}
{}
Text::
Text(Text&& other)
: _data{std::move(other._data)}
: _convention{other._convention},
_data{std::move(other._data)}
{}
Text::