From: Daniel Arndt Date: Fri, 10 Jan 2020 22:03:01 +0000 (-0500) Subject: Fix FESystem move constrcutor X-Git-Tag: v9.2.0-rc1~661^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f87540f9b34ba684ce2e2317581606f392ebb3b;p=dealii.git Fix FESystem move constrcutor --- diff --git a/include/deal.II/fe/fe_system.h b/include/deal.II/fe/fe_system.h index cb5777bb36..8cec8ab34c 100644 --- a/include/deal.II/fe/fe_system.h +++ b/include/deal.II/fe/fe_system.h @@ -529,7 +529,13 @@ public: /** * Move constructor. */ - FESystem(FESystem &&) = default; // NOLINT + FESystem(FESystem &&other_fe_system) + : FiniteElement(std::move(other_fe_system)) + { + base_elements = std::move(other_fe_system.base_elements); + generalized_support_points_index_table = + std::move(other_fe_system.generalized_support_points_index_table); + } /** * Destructor.