| 627 | } |
| 628 | |
| 629 | std::vector<cmSourceFile*> const* cmGeneratorTarget::GetSourceDepends( |
| 630 | cmSourceFile const* sf) const |
| 631 | { |
| 632 | auto i = this->SourceDepends.find(sf); |
| 633 | if (i != this->SourceDepends.end()) { |
| 634 | return &i->second.Depends; |
| 635 | } |
| 636 | return nullptr; |
| 637 | } |
| 638 | |
| 639 | namespace { |
| 640 | void handleSystemIncludesDep(cmLocalGenerator const* lg, |
no test coverage detected