diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-07-23 09:08:37 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-07-23 10:40:41 +0200 |
commit | 58ddacdb4be78dd00e05a46459ed0bcbe7531632 (patch) | |
tree | 229b1febb192f27e80a14db5607b6bc9eba3188c /xmloff/source | |
parent | 2d04d7cc559445d8c1559af6af6d981d9f682db4 (diff) |
loplugin:noexceptmove (macOS, libc++)
Change-Id: Ic587957fe0bf871b587375a68758a537de910de5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119399
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'xmloff/source')
-rw-r--r-- | xmloff/source/core/xmlcnimp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/core/xmlcnimp.cxx b/xmloff/source/core/xmlcnimp.cxx index 34010568bd19..0a7ab2018475 100644 --- a/xmloff/source/core/xmlcnimp.cxx +++ b/xmloff/source/core/xmlcnimp.cxx @@ -36,7 +36,7 @@ SvXMLAttrContainerData& SvXMLAttrContainerData::operator=(const SvXMLAttrContain return *this; } -SvXMLAttrContainerData& SvXMLAttrContainerData::operator=(SvXMLAttrContainerData&& rCopy) +SvXMLAttrContainerData& SvXMLAttrContainerData::operator=(SvXMLAttrContainerData&& rCopy) noexcept { pimpl = std::move( rCopy.pimpl ); return *this; |