From 2f87540f9b34ba684ce2e2317581606f392ebb3b Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Fri, 10 Jan 2020 17:03:01 -0500 Subject: [PATCH] Fix FESystem move constrcutor --- include/deal.II/fe/fe_system.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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. -- 2.39.5