Skip to content

Commit

Permalink
Fix a couple more missing std:: found with grep
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilMiller authored and mattw-nws committed Aug 31, 2023
1 parent b7bba38 commit c317184
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/NGen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ int main(int argc, char *argv[]) {
std::cout<<" Fortran BMI enabled"<<std::endl;
#endif
#ifdef NGEN_C_LIB_ACTIVE
cout<<" C BMI enabled"<<std::endl;
std::cout<<" C BMI enabled"<<std::endl;
#endif
#ifdef ACTIVATE_PYTHON
std::cout<<" Python active"<<std::endl;
Expand Down
2 changes: 1 addition & 1 deletion test/realizations/catchments/Bmi_C_Pet_IT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void Bmi_C_Pet_IT::SetUp() {
"}";
std::stringstream stream;
stream << config_json[i];
//cout << stream.str();
//std::cout << stream.str();
boost::property_tree::ptree loaded_tree;
boost::property_tree::json_parser::read_json(stream, loaded_tree);
config_prop_ptree[i] = loaded_tree.get_child("catchments").get_child(catchment_ids[i]).get_child("bmi_c");
Expand Down

0 comments on commit c317184

Please sign in to comment.