summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-11-01 09:48:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-11-02 07:03:08 +0100
commit8467d764187691f53e66d3568270197b162332d8 (patch)
tree4516bb3ea935427d4549ce09615a22bf5663096a /include/editeng
parent9ec1f722caedbeb04f96258f23442f8ee92a42be (diff)
fix signatures of deleted copy/assign operators
Change-Id: Id1a0749b78a7021be3564487fb974d7084705129 Reviewed-on: https://gerrit.libreoffice.org/62718 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/swafopt.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/editeng/swafopt.hxx b/include/editeng/swafopt.hxx
index f3b34adb32a7..0d4e6ba310e8 100644
--- a/include/editeng/swafopt.hxx
+++ b/include/editeng/swafopt.hxx
@@ -57,7 +57,7 @@ class SortedAutoCompleteStrings
{
bool owning_;
- void operator =(SortedAutoCompleteStrings) = delete;
+ SortedAutoCompleteStrings& operator =(SortedAutoCompleteStrings const &) = delete;
#if !HAVE_CPP_GUARANTEED_COPY_ELISION
public: