* Load all parent Checkables of the current dependency group. * * @param parents The set to load the parent Checkables into. */
| 138 | * @param parents The set to load the parent Checkables into. |
| 139 | */ |
| 140 | void DependencyGroup::LoadParents(std::set<Checkable::Ptr>& parents) const |
| 141 | { |
| 142 | for (auto& [compositeKey, children] : m_Members) { |
| 143 | parents.insert(std::get<0>(compositeKey)); |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * Retrieve any child Checkable from the current dependency group. |
no test coverage detected