summaryrefslogtreecommitdiff
path: root/libxsd/libxsd/cxx/tree/containers.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-12-25 11:59:14 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-01-13 22:32:44 +0300
commitac58ebce44e0ea4c4dabca3f4440eb21bfe3dd2a (patch)
treec7648e37dff5aba76eff33f3009d052be9f518c1 /libxsd/libxsd/cxx/tree/containers.hxx
parent818bcfa0dbbc1ef48bc3fe1f0c14d12866c51ef2 (diff)
Fix GCC 'implicitly-declared copy constructor is deprecated' warningc++98-tests
Note that since c++11 the generation of the implicit copy constructor is deprecated for a class with a user-defined copy assignment operator.
Diffstat (limited to 'libxsd/libxsd/cxx/tree/containers.hxx')
-rw-r--r--libxsd/libxsd/cxx/tree/containers.hxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/libxsd/libxsd/cxx/tree/containers.hxx b/libxsd/libxsd/cxx/tree/containers.hxx
index 07dff0d..43b70e4 100644
--- a/libxsd/libxsd/cxx/tree/containers.hxx
+++ b/libxsd/libxsd/cxx/tree/containers.hxx
@@ -858,6 +858,11 @@ namespace xsd
{
}
+#ifdef XSD_CXX11
+ sequence&
+ operator= (const sequence&) = default;
+#endif
+
public:
void
assign (size_type n, const T& x)
@@ -1132,6 +1137,11 @@ namespace xsd
: base_sequence (s)
{
}
+
+#ifdef XSD_CXX11
+ sequence&
+ operator= (const sequence&) = default;
+#endif
};