summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-11-22 14:13:30 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-11-22 14:49:29 +0100
commitc19b6a80da0ba15a53a599732c45faf0bd5a7f3f (patch)
tree636ce59da1680733ba084d772a8525073445f31f
parentd3651f96d45405d6d142bf97084c377e395945c3 (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>
-rw-r--r--include/rtl/ustrbuf.hxx2
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;