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 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::
|
||||
|
||||
Reference in New Issue
Block a user