Skip to content

Commit

Permalink
Fix two more missing std:: introduced in NOAA-OWP#599
Browse files Browse the repository at this point in the history
  • Loading branch information
mattw-nws committed Aug 15, 2023
1 parent 014d73a commit 4011aa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/realizations/catchment/Bmi_Module_Formulation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ namespace realization {
}
}
//This is unlikely (impossible?) to throw since a pre-check on available names is done above. Assert instead?
throw runtime_error(get_formulation_type() + " received invalid output forcing name " + output_name);
throw std::runtime_error(get_formulation_type() + " received invalid output forcing name " + output_name);
}

/**
Expand Down Expand Up @@ -325,7 +325,7 @@ namespace realization {
}

//This is unlikely (impossible?) to throw since a pre-check on available names is done above. Assert instead?
throw runtime_error(get_formulation_type() + " received invalid output forcing name " + output_name);
throw std::runtime_error(get_formulation_type() + " received invalid output forcing name " + output_name);
}

bool is_bmi_input_variable(const std::string &var_name) override {
Expand Down

0 comments on commit 4011aa6

Please sign in to comment.