diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-05 13:51:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-06 08:33:28 +0200 |
commit | 3d604d1cd6cc70ef96782ef769f0479b509987a8 (patch) | |
tree | 068bb54b87dd46640ff752994133692551118400 /l10ntools | |
parent | 16afac775a048d6d57d43952c855345f47cb231f (diff) |
clang-tidy performance-move-const-arg
Change-Id: I607891e120688b746c8a4c577018d97147a79217
Reviewed-on: https://gerrit.libreoffice.org/60029
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/po.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/l10ntools/source/po.cxx b/l10ntools/source/po.cxx index 72644095c8f8..48ec1a68ecf0 100644 --- a/l10ntools/source/po.cxx +++ b/l10ntools/source/po.cxx @@ -287,7 +287,7 @@ PoEntry& PoEntry::operator=(const PoEntry& rPo) PoEntry& PoEntry::operator=(PoEntry&& rPo) { m_pGenPo = std::move(rPo.m_pGenPo); - m_bIsInitialized = std::move(rPo.m_bIsInitialized); + m_bIsInitialized = rPo.m_bIsInitialized; return *this; } |