summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-07-26 11:13:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2018-07-26 14:43:03 +0200
commite0e1a2d756498d8e00a94bf7535d964f8df3e6ec (patch)
tree56dbf04c31a736860ada5d2348e69ee0d62fe1b0 /xmloff
parentc8da7130a1ccfe5115d5cd4d734536a2e73942a2 (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 'xmloff')
-rw-r--r--xmloff/source/core/attrlist.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/xmloff/source/core/attrlist.cxx b/xmloff/source/core/attrlist.cxx
index 5985ef2159be..5673d66f9d93 100644
--- a/xmloff/source/core/attrlist.cxx
+++ b/xmloff/source/core/attrlist.cxx
@@ -58,11 +58,6 @@ struct SvXMLAttributeList_Impl
vecAttribute.reserve(20);
}
- SvXMLAttributeList_Impl( const SvXMLAttributeList_Impl& r ) :
- vecAttribute( r.vecAttribute )
- {
- }
-
::std::vector<struct SvXMLTagAttribute_Impl> vecAttribute;
typedef ::std::vector<struct SvXMLTagAttribute_Impl>::size_type size_type;
};