summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-11 15:38:03 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-11 17:25:06 +0100
commit8791b9957c95e5ed646e719308f12c14761cff6b (patch)
tree0055a56542b88289e8305eb7716d0de732e1e58a /include
parenta8a064d11c05feed83f05b0ce8209f7054afd804 (diff)
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 <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/cppuhelper/weakref.hxx2
1 files changed, 1 insertions, 1 deletions
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