| 221 | } |
| 222 | |
| 223 | void ModuleGraph::CleanTaskGraph() { |
| 224 | for (auto const &task : tasks_) { |
| 225 | auto it = all_modules_.find(task); |
| 226 | if (it != all_modules_.end()) { |
| 227 | it->second->ClearParentTasks(); |
| 228 | } |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | const std::map<std::string, Module *> &ModuleGraph::GetAllModules() { |
| 233 | return all_modules_; |
nothing calls this directly
no test coverage detected