You've already forked libart-paperback
Fix bug caused by uninitialized member
All checks were successful
on-push / build-and-test (push) Successful in 27s
All checks were successful
on-push / build-and-test (push) Successful in 27s
This commit is contained in:
@@ -27,12 +27,14 @@ namespace Art::Paperback::Carousel
|
|||||||
|
|
||||||
Text::
|
Text::
|
||||||
Text(Text const& other)
|
Text(Text const& other)
|
||||||
: _data{other._data}
|
: _convention{other._convention},
|
||||||
|
_data{other._data}
|
||||||
{}
|
{}
|
||||||
|
|
||||||
Text::
|
Text::
|
||||||
Text(Text&& other)
|
Text(Text&& other)
|
||||||
: _data{std::move(other._data)}
|
: _convention{other._convention},
|
||||||
|
_data{std::move(other._data)}
|
||||||
{}
|
{}
|
||||||
|
|
||||||
Text::
|
Text::
|
||||||
|
|||||||
Reference in New Issue
Block a user