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
093ae07e
Commit
093ae07e
authored
Sep 12, 2017
by
Ronan
Browse files
fix build
parent
4d85643a
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 @
093ae07e
...
...
@@ -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
);
...
...
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