diff --git a/ProcessLib/LIE/HydroMechanics/LocalAssembler/IntegrationPointDataFracture.h b/ProcessLib/LIE/HydroMechanics/LocalAssembler/IntegrationPointDataFracture.h index b9ca64b54248de5686197e3fdfea1e4efd5d3cd0..f9e6de8bdfa6f460084da7178db7a4a3a05ecc46 100644 --- a/ProcessLib/LIE/HydroMechanics/LocalAssembler/IntegrationPointDataFracture.h +++ b/ProcessLib/LIE/HydroMechanics/LocalAssembler/IntegrationPointDataFracture.h @@ -31,23 +31,6 @@ struct IntegrationPointDataFracture final { } - IntegrationPointDataFracture(IntegrationPointDataFracture&& other) - : H_u(std::move(other.H_u)), - sigma_eff(std::move(other.sigma_eff)), - sigma_eff_prev(std::move(other.sigma_eff_prev)), - w(std::move(other.w)), - w_prev(std::move(other.w_prev)), - N_p(std::move(other.N_p)), - dNdx_p(std::move(other.dNdx_p)), - aperture(std::move(other.aperture)), - aperture0(std::move(other.aperture0)), - fracture_material(other.fracture_material), - C(std::move(other.C)), - integration_weight(std::move(other.integration_weight)), - darcy_velocity(std::move(other.darcy_velocity)) - { - } - typename HMatricesType::HMatrixType H_u; typename HMatricesType::ForceVectorType sigma_eff, sigma_eff_prev; typename HMatricesType::ForceVectorType w, w_prev; diff --git a/ProcessLib/LIE/HydroMechanics/LocalAssembler/IntegrationPointDataMatrix.h b/ProcessLib/LIE/HydroMechanics/LocalAssembler/IntegrationPointDataMatrix.h index f2e123ed6812852c200f59b0af91d73eba765759..6f18c0a5b0a9119d5674e2891b03533f2ff20130 100644 --- a/ProcessLib/LIE/HydroMechanics/LocalAssembler/IntegrationPointDataMatrix.h +++ b/ProcessLib/LIE/HydroMechanics/LocalAssembler/IntegrationPointDataMatrix.h @@ -33,26 +33,6 @@ struct IntegrationPointDataMatrix final { } - // The default generated move-ctor is correctly generated for other - // compilers. - explicit IntegrationPointDataMatrix(IntegrationPointDataMatrix&& other) - : N_u(std::move(other.N_u)), - dNdx_u(std::move(other.dNdx_u)), - H_u(std::move(other.H_u)), - sigma_eff(std::move(other.sigma_eff)), - sigma_eff_prev(std::move(other.sigma_eff_prev)), - eps(std::move(other.eps)), - eps_prev(std::move(other.eps_prev)), - N_p(std::move(other.N_p)), - dNdx_p(std::move(other.dNdx_p)), - solid_material(other.solid_material), - material_state_variables(std::move(other.material_state_variables)), - C(std::move(other.C)), - integration_weight(std::move(other.integration_weight)), - darcy_velocity(std::move(other.darcy_velocity)) - { - } - typename ShapeMatrixTypeDisplacement::NodalRowVectorType N_u; typename ShapeMatrixTypeDisplacement::GlobalDimNodalMatrixType dNdx_u; typename ShapeMatrixTypeDisplacement::template MatrixType< diff --git a/ProcessLib/LIE/SmallDeformation/LocalAssembler/IntegrationPointDataFracture.h b/ProcessLib/LIE/SmallDeformation/LocalAssembler/IntegrationPointDataFracture.h index 070a3844d39fc5d646a2f5c88f4cf0b00ea30cf9..26d4bed65cb2fecbac46f1c029d4f3e215e19af7 100644 --- a/ProcessLib/LIE/SmallDeformation/LocalAssembler/IntegrationPointDataFracture.h +++ b/ProcessLib/LIE/SmallDeformation/LocalAssembler/IntegrationPointDataFracture.h @@ -31,24 +31,6 @@ struct IntegrationPointDataFracture final { } - // The default generated move-ctor is correctly generated for other - // compilers. - explicit IntegrationPointDataFracture(IntegrationPointDataFracture&& other) - : _h_matrices(std::move(other._h_matrices)), - _sigma(std::move(other._sigma)), - _sigma_prev(std::move(other._sigma_prev)), - _w(std::move(other._w)), - _w_prev(std::move(other._w_prev)), - _aperture(std::move(other._aperture)), - _aperture_prev(std::move(other._aperture_prev)), - _aperture0(std::move(other._aperture0)), - _fracture_material(other._fracture_material), - _material_state_variables(std::move(other._material_state_variables)), - _C(std::move(other._C)), - _detJ(std::move(other._detJ)) - { - } - typename HMatricesType::HMatrixType _h_matrices; typename HMatricesType::ForceVectorType _sigma, _sigma_prev; typename HMatricesType::ForceVectorType _w, _w_prev;