summaryrefslogtreecommitdiff
path: root/connectivity/source/commontools
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/commontools')
-rw-r--r--connectivity/source/commontools/FValue.cxx4
-rw-r--r--connectivity/source/commontools/dbmetadata.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/commontools/FValue.cxx b/connectivity/source/commontools/FValue.cxx
index 51adab4f3e98..bf79ffd5ac7b 100644
--- a/connectivity/source/commontools/FValue.cxx
+++ b/connectivity/source/commontools/FValue.cxx
@@ -259,7 +259,7 @@ void ORowSetValue::setTypeKind(sal_Int32 _eType)
}
-void ORowSetValue::free()
+void ORowSetValue::free() noexcept
{
if(!m_bNull)
{
@@ -470,7 +470,7 @@ ORowSetValue& ORowSetValue::operator=(const ORowSetValue& _rRH)
return *this;
}
-ORowSetValue& ORowSetValue::operator=(ORowSetValue&& _rRH)
+ORowSetValue& ORowSetValue::operator=(ORowSetValue&& _rRH) noexcept
{
if ( m_eTypeKind != _rRH.m_eTypeKind || !m_bNull)
free();
diff --git a/connectivity/source/commontools/dbmetadata.cxx b/connectivity/source/commontools/dbmetadata.cxx
index 026381e0377b..d345aec78cac 100644
--- a/connectivity/source/commontools/dbmetadata.cxx
+++ b/connectivity/source/commontools/dbmetadata.cxx
@@ -188,7 +188,7 @@ namespace dbtools
{
}
- DatabaseMetaData::DatabaseMetaData( DatabaseMetaData&& _copyFrom )
+ DatabaseMetaData::DatabaseMetaData(DatabaseMetaData&& _copyFrom) noexcept
:m_pImpl(std::move(_copyFrom.m_pImpl))
{
}
@@ -202,7 +202,7 @@ namespace dbtools
return *this;
}
- DatabaseMetaData& DatabaseMetaData::operator=( DatabaseMetaData&& _copyFrom )
+ DatabaseMetaData& DatabaseMetaData::operator=(DatabaseMetaData&& _copyFrom) noexcept
{
m_pImpl = std::move(_copyFrom.m_pImpl);
return *this;