mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 13:43:43 +00:00
common: prevent warning - expression result unused
This commit is contained in:
parent
82c1e68b16
commit
6bb95883e5
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