diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-07-26 13:46:27 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-07-27 08:19:50 +0200 |
commit | 7f0bdd5e88ed49eebe3c0c8edabecffdddeaff4f (patch) | |
tree | b7c5d74e947e9a9d42b92706eb288ecd6bb6b6ac /include/unotools/confignode.hxx | |
parent | 322acaa9ad58f4dc9a7025eacedd748dd2c1a1a1 (diff) |
unotools: avoid -Werror=deprecated-copy (GCC trunk towards GCC 9)
...by explicitly defaulting the copy/move functions (and, where needed in turn,
also a default ctor) for classes that have a user-declared dtor that does
nothing other than an implicitly-defined one would do, but needs to be user-
declared because it is virtual and potentially serves as a key function to
emit the vtable, or is non-public, etc.; and by removing explicitly user-
provided functions that do the same as their implicitly-defined counterparts,
but may prevent implicitly declared copy functions from being defined as non-
deleted in the future. (Even if such a user-provided function was declared
non-inline in an include file, the apparently-used implicitly-defined copy
functions are already include, so why bother with non-inline functions.)
Change-Id: Iaa08ef916a2d266e011a2cb66592b377cb1eb23c
Reviewed-on: https://gerrit.libreoffice.org/58095
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/unotools/confignode.hxx')
-rw-r--r-- | include/unotools/confignode.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/unotools/confignode.hxx b/include/unotools/confignode.hxx index 09c9bb266308..5bf4a1473da3 100644 --- a/include/unotools/confignode.hxx +++ b/include/unotools/confignode.hxx @@ -221,10 +221,6 @@ namespace utl const bool i_bUpdatable ); - /// copy ctor - OConfigurationTreeRoot(const OConfigurationTreeRoot& _rSource) - :OConfigurationNode(_rSource), m_xCommitter(_rSource.m_xCommitter) { } - /** open a new top-level configuration node opens a new node which is the root if an own configuration sub tree. This is what "top level" means: The |