Skip to content

Commit

Permalink
Bmi_Adapter: remove disused member 'bool allow_model_exceed_end_time'
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilMiller committed Jun 27, 2024
1 parent 5d479f5 commit e5d8e83
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions include/bmi/Bmi_Adapter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,6 @@ namespace models {
std::string get_model_name();

protected:
/** Whether model ``Update`` calls are allowed and handled in some way by the backing model. */
bool allow_model_exceed_end_time = false;
/** Path (as a string) to the BMI config file for initializing the backing model (empty if none). */
std::string bmi_init_config;
/** Whether this particular model has a time step size that cannot be changed internally or externally. */
Expand Down
1 change: 0 additions & 1 deletion src/bmi/Bmi_Adapter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Bmi_Adapter::Bmi_Adapter(
: model_name(std::move(model_name))
, bmi_init_config(std::move(bmi_init_config))
, bmi_model_has_fixed_time_step(has_fixed_time_step)
, allow_model_exceed_end_time(allow_exceed_end)
, bmi_model_time_convert_factor(1.0) {
// This replicates a lot of Initialize, but it's necessary to be able to do it separately to
// support "initializing" on construction, given using Initialize requires use of virtual
Expand Down

0 comments on commit e5d8e83

Please sign in to comment.