diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-10-02 17:28:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-10-02 21:54:00 +0200 |
commit | 3db830d354de80b319fb818a0373365a1e647264 (patch) | |
tree | 7b8abc09ad3d5f44c05b440c12ff4238c7e86f15 /include/unotools | |
parent | 22c3b4077f5f113f8208bb03b853eb3befafff51 (diff) |
Silence new Clang trunk -Wdefaulted-function-deleted
This mostly affects explicitly defaulted functions that had recently been user-
declared to silence new GCC trunk -Wdeprecated-copy. It is not entirely clear
to me what the best approach is overall, see my mail
<http://lists.llvm.org/pipermail/cfe-commits/Week-of-Mon-20181001/245321.html>
"Re: r343285 - [cxx2a] P0641R2: (Some) type mismatches on defaulted functions
only", but lets just explicitly delete those functions for now.
Change-Id: If8c72f612f67a8feb8b03c2fb988c807e704ef03
Reviewed-on: https://gerrit.libreoffice.org/61259
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/unotools')
-rw-r--r-- | include/unotools/configitem.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unotools/configitem.hxx b/include/unotools/configitem.hxx index e49e7a552709..3d445dc20386 100644 --- a/include/unotools/configitem.hxx +++ b/include/unotools/configitem.hxx @@ -167,8 +167,8 @@ namespace utl ConfigItem(ConfigItem const &) = default; ConfigItem(ConfigItem &&) = default; - ConfigItem & operator =(ConfigItem const &) = default; - ConfigItem & operator =(ConfigItem &&) = default; + ConfigItem & operator =(ConfigItem const &) = delete; // due to const sSubTree + ConfigItem & operator =(ConfigItem &&) = delete; // due to const sSubTree /** is called from the ConfigManager before application ends of from the PropertyChangeListener if the sub tree broadcasts changes. */ |