diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-22 14:13:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-22 14:49:29 +0100 |
commit | c19b6a80da0ba15a53a599732c45faf0bd5a7f3f (patch) | |
tree | 636ce59da1680733ba084d772a8525073445f31f /include/rtl/ustrbuf.hxx | |
parent | d3651f96d45405d6d142bf97084c377e395945c3 (diff) |
loplugin:noexceptmove
Change-Id: I2ba1ebb161f4004b819fd106c090fefd8d8af8ea
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125658
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/rtl/ustrbuf.hxx')
-rw-r--r-- | include/rtl/ustrbuf.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rtl/ustrbuf.hxx b/include/rtl/ustrbuf.hxx index 115d529a0c53..85fe744e9ee1 100644 --- a/include/rtl/ustrbuf.hxx +++ b/include/rtl/ustrbuf.hxx @@ -270,7 +270,7 @@ public: /** Move assignment * @since LibreOffice 7.3 */ - OUStringBuffer& operator = ( OUStringBuffer&& value ) + OUStringBuffer& operator = ( OUStringBuffer&& value ) noexcept { rtl_uString_release( pData ); pData = value.pData; |