summaryrefslogtreecommitdiff
path: root/l10ntools
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools')
-rw-r--r--l10ntools/inc/po.hxx2
-rw-r--r--l10ntools/source/po.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/inc/po.hxx b/l10ntools/inc/po.hxx
index aff8b88af100..bbbf289cbec6 100644
--- a/l10ntools/inc/po.hxx
+++ b/l10ntools/inc/po.hxx
@@ -51,7 +51,7 @@ public:
PoEntry( const PoEntry& rPo );
PoEntry& operator=( const PoEntry& rPo );
- PoEntry& operator=( PoEntry&& rPo );
+ PoEntry& operator=( PoEntry&& rPo ) noexcept;
OString const & getSourceFile() const; ///< Get name of file from which entry is extracted
OString getGroupId() const;
diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx
index 921d752ce6c7..20c728e6338c 100644
--- a/l10ntools/source/po.cxx
+++ b/l10ntools/source/po.cxx
@@ -322,7 +322,7 @@ PoEntry& PoEntry::operator=(const PoEntry& rPo)
return *this;
}
-PoEntry& PoEntry::operator=(PoEntry&& rPo)
+PoEntry& PoEntry::operator=(PoEntry&& rPo) noexcept
{
m_pGenPo = std::move(rPo.m_pGenPo);
m_bIsInitialized = std::move(rPo.m_bIsInitialized);