Skip to content

Commit

Permalink
two more missed std::s somehow
Browse files Browse the repository at this point in the history
  • Loading branch information
mattw-nws committed Aug 15, 2023
1 parent 098b7b9 commit 5e1a86a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/realizations/catchments/Bmi_C_Formulation_Test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Bmi_C_Formulation_Test : public ::testing::Test {
return formulation.get_model_type_name();
}

static double get_friend_var_value_as_double(Bmi_C_Formulation& formulation, const string& var_name) {
static double get_friend_var_value_as_double(Bmi_C_Formulation& formulation, const std::string& var_name) {
return formulation.get_var_value_as_double(var_name);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Bmi_Fortran_Formulation_Test : public ::testing::Test {
return formulation.get_model_type_name();
}

static double get_friend_var_value_as_double(Bmi_Fortran_Formulation& formulation, const string& var_name) {
static double get_friend_var_value_as_double(Bmi_Fortran_Formulation& formulation, const std::string& var_name) {
return formulation.get_var_value_as_double(var_name);
}

Expand Down

0 comments on commit 5e1a86a

Please sign in to comment.