From 8791b9957c95e5ed646e719308f12c14761cff6b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 11 Nov 2019 15:38:03 +0200 Subject: fix move operator introduced in commit a0ebc6f898992dbc0da9f252911da867dfdfd741 Date: Sat Nov 9 08:47:48 2019 +0200 missing move operator= Change-Id: I0607ad1afbcb1f2a86d1c7e0736e2549a5562b64 Reviewed-on: https://gerrit.libreoffice.org/82441 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/cppuhelper/weakref.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/cppuhelper/weakref.hxx b/include/cppuhelper/weakref.hxx index 8a94145998fa..ff4d034cac46 100644 --- a/include/cppuhelper/weakref.hxx +++ b/include/cppuhelper/weakref.hxx @@ -174,7 +174,7 @@ public: #if defined LIBO_INTERNAL_ONLY WeakReference & SAL_CALL operator = ( - const css::uno::Reference< interface_type > && xInt ) + css::uno::Reference< interface_type > && xInt ) { WeakReferenceHelper::operator=(std::move(xInt)); return *this; } #endif -- cgit