GroupState: add gpmaint_state to comparison operator

This commit is contained in:
Arne Morten Kvarving 2023-02-15 20:03:06 +01:00
parent 7f36bac579
commit 1a5ae624b1

View File

@ -43,7 +43,8 @@ bool GroupState::operator==(const GroupState& other) const {
this->inj_vrep_rate == other.inj_vrep_rate &&
this->inj_surface_rates == other.inj_surface_rates &&
this->m_grat_sales_target == other.m_grat_sales_target &&
this->injection_controls == other.injection_controls;
this->injection_controls == other.injection_controls &&
this->gpmaint_state == other.gpmaint_state;
}
//-------------------------------------------------------------------------