include/rtl/ustrbuf.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit c19b6a80da0ba15a53a599732c45faf0bd5a7f3f Author: Noel Grandin <[email protected]> AuthorDate: Mon Nov 22 14:13:30 2021 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Mon Nov 22 14:49:29 2021 +0100 loplugin:noexceptmove Change-Id: I2ba1ebb161f4004b819fd106c090fefd8d8af8ea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125658 Tested-by: Jenkins Reviewed-by: Noel Grandin <[email protected]> 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;
