diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-07-26 14:04:24 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-07-27 08:27:14 +0200 |
commit | a8ed578f92cdfbd6236c74bc118beeebf806a84b (patch) | |
tree | 84253ab7916bb9d012ce71e26a653bd64c1444c1 | |
parent | d2a28ebd5878305b29d8dbfc3b537ddfaabd3625 (diff) |
cppuhelper: avoid -Werror=deprecated-copy (GCC trunk towards GCC 9)
...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
Change-Id: I2b7b6b8baa872addfb2adb0d551d78de1e31c896
Reviewed-on: https://gerrit.libreoffice.org/58106
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | include/cppuhelper/typeprovider.hxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/cppuhelper/typeprovider.hxx b/include/cppuhelper/typeprovider.hxx index fec7ea2efc84..eed17d4925d1 100644 --- a/include/cppuhelper/typeprovider.hxx +++ b/include/cppuhelper/typeprovider.hxx @@ -51,9 +51,6 @@ public: {} /// @endcond - OTypeCollection( const OTypeCollection & rCollection ) - : _aTypes( rCollection._aTypes ) - {} OTypeCollection( const css::uno::Type & rType1, const css::uno::Sequence< css::uno::Type > & rAddTypes = css::uno::Sequence< css::uno::Type >() ); |