Skip to content

Commit

Permalink
it compiles with clang on my machine
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed May 17, 2024
1 parent 59fc99a commit 82a32be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/micm/solver/solver_builder.inl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ namespace micm
{
if (species.HasProperty("absolute tolerance"))
{
tolerances[species_map.at(species.name_)] = species.GetProperty<double>("absolute tolerance");
tolerances[species_map.at(species.name_)] = species.template GetProperty<double>("absolute tolerance");
}
}
for (auto& phase : system_.phases_)
Expand All @@ -195,7 +195,7 @@ namespace micm
{
if (species.HasProperty("absolute tolerance"))
{
tolerances[species_map.at(species.name_)] = species.GetProperty<double>("absolute tolerance");
tolerances[species_map.at(species.name_)] = species.template GetProperty<double>("absolute tolerance");
}
}
}
Expand Down

0 comments on commit 82a32be

Please sign in to comment.