| 3777 | } |
| 3778 | |
| 3779 | void cmMakefile::PushScope() |
| 3780 | { |
| 3781 | this->StateSnapshot = |
| 3782 | this->GetState()->CreateVariableScopeSnapshot(this->StateSnapshot); |
| 3783 | this->PushLoopBlockBarrier(); |
| 3784 | |
| 3785 | #if !defined(CMAKE_BOOTSTRAP) |
| 3786 | this->GetGlobalGenerator()->GetFileLockPool().PushFunctionScope(); |
| 3787 | #endif |
| 3788 | } |
| 3789 | |
| 3790 | void cmMakefile::PopScope() |
| 3791 | { |
no test coverage detected