| 152 | }; |
| 153 | |
| 154 | bool cmFunctionFunctionBlocker::ArgumentsMatch(cmListFileFunction const& lff, |
| 155 | cmMakefile& mf) const |
| 156 | { |
| 157 | std::vector<std::string> expandedArguments; |
| 158 | mf.ExpandArguments(lff.Arguments(), expandedArguments); |
| 159 | return expandedArguments.empty() || |
| 160 | expandedArguments.front() == this->Args.front(); |
| 161 | } |
| 162 | |
| 163 | bool cmFunctionFunctionBlocker::Replay( |
| 164 | std::vector<cmListFileFunction> functions, cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected