From 366ffa10ed9487631e56e013f3b796ee8be8b910 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <github@naumov.de> Date: Wed, 30 Aug 2017 00:24:05 +0200 Subject: [PATCH] [PL] TM: Remove unused LocalAssemblerData. --- .../ThermoMechanics/ThermoMechanicsFEM.h | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/ProcessLib/ThermoMechanics/ThermoMechanicsFEM.h b/ProcessLib/ThermoMechanics/ThermoMechanicsFEM.h index 3e7fbc094b9..b32a8d6b70f 100644 --- a/ProcessLib/ThermoMechanics/ThermoMechanicsFEM.h +++ b/ProcessLib/ThermoMechanics/ThermoMechanicsFEM.h @@ -514,29 +514,5 @@ private: KelvinVectorDimensions<DisplacementDim>::value; }; -template <typename ShapeFunction, typename IntegrationMethod, - unsigned GlobalDim, int DisplacementDim> -class LocalAssemblerData final - : public ThermoMechanicsLocalAssembler<ShapeFunction, IntegrationMethod, - DisplacementDim> -{ -public: - LocalAssemblerData(LocalAssemblerData const&) = delete; - LocalAssemblerData(LocalAssemblerData&&) = delete; - - LocalAssemblerData( - MeshLib::Element const& e, - std::size_t const local_matrix_size, - bool is_axially_symmetric, - unsigned const integration_order, - ThermoMechanicsProcessData<DisplacementDim>& process_data) - : ThermoMechanicsLocalAssembler<ShapeFunction, IntegrationMethod, - DisplacementDim>( - e, local_matrix_size, is_axially_symmetric, integration_order, - process_data) - { - } -}; - } // namespace ThermoMechanics } // namespace ProcessLib -- GitLab