summaryrefslogtreecommitdiff
path: root/ucbhelper/source/client/content.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper/source/client/content.cxx')
-rw-r--r--ucbhelper/source/client/content.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucbhelper/source/client/content.cxx b/ucbhelper/source/client/content.cxx
index 04eccd0f0057..9641a4e0a87a 100644
--- a/ucbhelper/source/client/content.cxx
+++ b/ucbhelper/source/client/content.cxx
@@ -320,7 +320,7 @@ Content::Content( const Content& rOther )
m_xImpl = rOther.m_xImpl;
}
-Content::Content( Content&& rOther )
+Content::Content( Content&& rOther ) noexcept
{
m_xImpl = std::move(rOther.m_xImpl);
}
@@ -361,7 +361,7 @@ Content& Content::operator=( const Content& rOther )
return *this;
}
-Content& Content::operator=( Content&& rOther )
+Content& Content::operator=( Content&& rOther ) noexcept
{
m_xImpl = std::move(rOther.m_xImpl);
return *this;