mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
fix build
This commit is contained in:
parent
4d85643a9c
commit
093ae07e79
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ Content::Content (const Content &src) : ClonableObject(*new ContentPrivate) {
|
|||
d->contentType = src.getContentType();
|
||||
}
|
||||
|
||||
Content::Content (Content &&src) {
|
||||
Content::Content (Content &&src) : ClonableObject(*new ContentPrivate) {
|
||||
L_D(Content);
|
||||
d->body = move(src.getPrivate()->body);
|
||||
d->contentType = move(src.getPrivate()->contentType);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue