From 43d42c60ac6f3d775bdc7a958d78230da8846f0d Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <github@naumov.de> Date: Wed, 14 Jun 2017 01:48:02 +0200 Subject: [PATCH] [PL] TM: Remove unused function argument. --- ProcessLib/ThermoMechanics/ThermoMechanicsFEM.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ProcessLib/ThermoMechanics/ThermoMechanicsFEM.h b/ProcessLib/ThermoMechanics/ThermoMechanicsFEM.h index 00d64cbd338..0b5d8737ba7 100644 --- a/ProcessLib/ThermoMechanics/ThermoMechanicsFEM.h +++ b/ProcessLib/ThermoMechanics/ThermoMechanicsFEM.h @@ -83,12 +83,10 @@ struct IntegrationPointData final KelvinVectorDimensions<DisplacementDim>::value; using Invariants = MaterialLib::SolidModels::Invariants<kelvin_vector_size>; - template <typename DisplacementVectorType> typename BMatricesType::KelvinMatrixType updateConstitutiveRelation( double const t, SpatialPosition const& x_position, double const dt, - DisplacementVectorType const& u, double const linear_thermal_strain) { // assume isotropic thermal expansion @@ -315,7 +313,7 @@ public: // eps.noalias() = B * u; auto C = _ip_data[ip].updateConstitutiveRelation( - t, x_position, dt, u, linear_thermal_strain); + t, x_position, dt, linear_thermal_strain); local_Jac .template block<displacement_size, displacement_size>( -- GitLab