diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-07-26 11:13:10 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-07-26 14:43:03 +0200 |
commit | e0e1a2d756498d8e00a94bf7535d964f8df3e6ec (patch) | |
tree | 56dbf04c31a736860ada5d2348e69ee0d62fe1b0 /include/xmloff | |
parent | c8da7130a1ccfe5115d5cd4d734536a2e73942a2 (diff) |
xmloff: 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: Idd25cd86db429b0f3391e359bb2617863b29eb67
Reviewed-on: https://gerrit.libreoffice.org/58053
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/xmloff')
-rw-r--r-- | include/xmloff/maptype.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/xmloff/maptype.hxx b/include/xmloff/maptype.hxx index 8a292008183e..0e944656f716 100644 --- a/include/xmloff/maptype.hxx +++ b/include/xmloff/maptype.hxx @@ -110,8 +110,6 @@ struct XMLPropertyState : mnIndex( nIndex ) {} XMLPropertyState( sal_Int32 nIndex, const css::uno::Any& rValue ) : mnIndex( nIndex ), maValue( rValue ) {} - XMLPropertyState( const XMLPropertyState& rPropState ) - : mnIndex( rPropState.mnIndex ), maValue( rPropState.maValue ) {} }; #endif // INCLUDED_XMLOFF_MAPTYPE_HXX |