mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-26 07:38:09 +00:00
fix(Content): add missed move
This commit is contained in:
parent
5bbd468b55
commit
360d4056dd
1 changed files with 1 additions and 1 deletions
|
|
@ -46,7 +46,7 @@ Content::Content (const Content &src) : ClonableObject(*new ContentPrivate), App
|
|||
d->contentDisposition = src.getContentDisposition();
|
||||
}
|
||||
|
||||
Content::Content (Content &&src) : ClonableObject(*new ContentPrivate), AppDataContainer(src) {
|
||||
Content::Content (Content &&src) : ClonableObject(*new ContentPrivate), AppDataContainer(move(src)) {
|
||||
L_D();
|
||||
d->body = move(src.getPrivate()->body);
|
||||
d->contentType = move(src.getPrivate()->contentType);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue