| 89 | } |
| 90 | |
| 91 | bool cmForEachFunctionBlocker::ArgumentsMatch(cmListFileFunction const& lff, |
| 92 | cmMakefile& mf) const |
| 93 | { |
| 94 | std::vector<std::string> expandedArguments; |
| 95 | mf.ExpandArguments(lff.Arguments(), expandedArguments); |
| 96 | return expandedArguments.empty() || |
| 97 | expandedArguments.front() == this->Args.front(); |
| 98 | } |
| 99 | |
| 100 | bool cmForEachFunctionBlocker::Replay( |
| 101 | std::vector<cmListFileFunction> functions, cmExecutionStatus& inStatus) |
nothing calls this directly
no test coverage detected