diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-01 09:48:16 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-11-02 07:03:08 +0100 |
commit | 8467d764187691f53e66d3568270197b162332d8 (patch) | |
tree | 4516bb3ea935427d4549ce09615a22bf5663096a /include/unoidl | |
parent | 9ec1f722caedbeb04f96258f23442f8ee92a42be (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/unoidl')
-rw-r--r-- | include/unoidl/unoidl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unoidl/unoidl.hxx b/include/unoidl/unoidl.hxx index 24fa7b27ef07..89a7dd593863 100644 --- a/include/unoidl/unoidl.hxx +++ b/include/unoidl/unoidl.hxx @@ -37,7 +37,7 @@ public: const OUString& getUri() const { return uri_; } private: - void operator =(NoSuchFileException) = delete; + NoSuchFileException& operator =(NoSuchFileException const &) = delete; OUString const uri_; }; @@ -60,7 +60,7 @@ public: const OUString& getDetail() const { return detail_; } private: - void operator =(FileFormatException) = delete; + FileFormatException& operator =(FileFormatException const &) = delete; OUString const uri_; OUString const detail_; |