mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00
common: prevent warning - expression result unused
This commit is contained in:
parent
1fc595aa5e
commit
a7eae339a5
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ struct Text::Impl
|
||||||
|
|
||||||
auto text = Text::gen().release();
|
auto text = Text::gen().release();
|
||||||
auto dup = text->pImpl;
|
auto dup = text->pImpl;
|
||||||
static_cast<Shape*>(P(shape)->duplicate(dup->shape));
|
P(shape)->duplicate(dup->shape);
|
||||||
|
|
||||||
if (loader) {
|
if (loader) {
|
||||||
dup->loader = loader;
|
dup->loader = loader;
|
||||||
|
|
Loading…
Add table
Reference in a new issue