Skip to content

Commit

Permalink
adding typename
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Jan 8, 2025
1 parent d00baca commit ae93072
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/analytical_surface_rxn_policy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ template<class BuilderPolicy>
void test_analytical_surface_rxn(
BuilderPolicy& builder,
double tolerance = 1e-8,
std::function<void(typename BuilderPolicy::StatePolicyType&)> prepare_for_solve = [](BuilderPolicy::StatePolicyType& state) {},
std::function<void(typename BuilderPolicy::StatePolicyType&)> postpare_for_solve = [](BuilderPolicy::StatePolicyType& state) {})
std::function<void(typename BuilderPolicy::StatePolicyType&)> prepare_for_solve = [](typename BuilderPolicy::StatePolicyType& state) {},
std::function<void(typename BuilderPolicy::StatePolicyType&)> postpare_for_solve = [](typename BuilderPolicy::StatePolicyType& state) {})
{
// parameters, from CAMP/test/unit_rxn_data/test_rxn_surface.F90
const double mode_GMD = 1.0e-6; // mode geometric mean diameter [m]
Expand Down

0 comments on commit ae93072

Please sign in to comment.