summaryrefslogtreecommitdiff
path: root/include/typelib/typedescription.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/typelib/typedescription.hxx')
-rw-r--r--include/typelib/typedescription.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/typelib/typedescription.hxx b/include/typelib/typedescription.hxx
index ae8599bb1fdd..bfe7596801ea 100644
--- a/include/typelib/typedescription.hxx
+++ b/include/typelib/typedescription.hxx
@@ -83,7 +83,7 @@ public:
*/
inline TypeDescription( const TypeDescription & rDescr );
#if defined LIBO_INTERNAL_ONLY
- TypeDescription(TypeDescription && other): _pTypeDescr(other._pTypeDescr)
+ TypeDescription(TypeDescription && other) noexcept : _pTypeDescr(other._pTypeDescr)
{ other._pTypeDescr = nullptr; }
#endif
/** Constructor:
@@ -115,7 +115,7 @@ public:
{ return this->operator =( rTypeDescr.get() ); }
#if defined LIBO_INTERNAL_ONLY
- TypeDescription & operator =(TypeDescription && other) {
+ TypeDescription & operator =(TypeDescription && other) noexcept {
if (_pTypeDescr != nullptr) {
typelib_typedescription_release(_pTypeDescr);
}