| 156 | return versions.at(index).is_currently_selected; |
| 157 | } |
| 158 | [[nodiscard]] bool isAnyVersionSelected() const |
| 159 | { |
| 160 | if (!versionsLoaded) |
| 161 | return false; |
| 162 | |
| 163 | return std::any_of(versions.constBegin(), versions.constEnd(), [](auto const& v) { return v.is_currently_selected; }); |
| 164 | } |
| 165 | }; |
| 166 | |
| 167 | struct OverrideDep { |