Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
360d4056
Commit
360d4056
authored
Oct 10, 2017
by
Ronan
Browse files
fix(Content): add missed move
parent
5bbd468b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/content/content.cpp
src/content/content.cpp
+1
-1
No files found.
src/content/content.cpp
View file @
360d4056
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment