| 2941 | } |
| 2942 | |
| 2943 | void cmMakefile::PopLoopBlockBarrier() |
| 2944 | { |
| 2945 | assert(!this->LoopBlockCounter.empty()); |
| 2946 | assert(this->LoopBlockCounter.top() == 0); |
| 2947 | this->LoopBlockCounter.pop(); |
| 2948 | } |
| 2949 | |
| 2950 | bool cmMakefile::IsLoopBlock() const |
| 2951 | { |
no test coverage detected