Skip to content
Snippets Groups Projects
Commit 9faf451f authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Lars Bilke
Browse files

[T/MatL] Add missing template keyword.

parent ee7218ae
No related branches found
No related tags found
No related merge requests found
...@@ -121,16 +121,16 @@ struct MaterialLib_SolidModelsMFront : public testing::Test ...@@ -121,16 +121,16 @@ struct MaterialLib_SolidModelsMFront : public testing::Test
MaterialLib_SolidModelsMFront() MaterialLib_SolidModelsMFront()
{ {
variable_array_prev[static_cast<int>(MPL::Variable::stress)] variable_array_prev[static_cast<int>(MPL::Variable::stress)]
.emplace<KelvinVector<Dim>>(KelvinVector<Dim>::Zero()); .template emplace<KelvinVector<Dim>>(KelvinVector<Dim>::Zero());
variable_array_prev[static_cast<int>(MPL::Variable::mechanical_strain)] variable_array_prev[static_cast<int>(MPL::Variable::mechanical_strain)]
.emplace<KelvinVector<Dim>>(KelvinVector<Dim>::Zero()); .template emplace<KelvinVector<Dim>>(KelvinVector<Dim>::Zero());
variable_array_prev[static_cast<int>(MPL::Variable::temperature)] variable_array_prev[static_cast<int>(MPL::Variable::temperature)]
.emplace<double>(0); .template emplace<double>(0);
variable_array[static_cast<int>(MPL::Variable::mechanical_strain)] variable_array[static_cast<int>(MPL::Variable::mechanical_strain)]
.emplace<KelvinVector<Dim>>(KelvinVector<Dim>::Zero()); .template emplace<KelvinVector<Dim>>(KelvinVector<Dim>::Zero());
variable_array[static_cast<int>(MPL::Variable::temperature)] variable_array[static_cast<int>(MPL::Variable::temperature)]
.emplace<double>(0); .template emplace<double>(0);
constitutive_relation = TestBehaviour::createConstitutiveRelation(); constitutive_relation = TestBehaviour::createConstitutiveRelation();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment