| 2948 | } |
| 2949 | |
| 2950 | bool cmMakefile::IsLoopBlock() const |
| 2951 | { |
| 2952 | assert(!this->LoopBlockCounter.empty()); |
| 2953 | return !this->LoopBlockCounter.empty() && this->LoopBlockCounter.top() > 0; |
| 2954 | } |
| 2955 | |
| 2956 | bool cmMakefile::ExpandArguments(std::vector<cmListFileArgument> const& inArgs, |
| 2957 | std::vector<std::string>& outArgs) const |
no test coverage detected