| 1459 | } |
| 1460 | |
| 1461 | void cmMakefile::PopFunctionScope(bool reportError) |
| 1462 | { |
| 1463 | this->PopPolicy(); |
| 1464 | |
| 1465 | this->PopSnapshot(reportError); |
| 1466 | |
| 1467 | this->PopFunctionBlockerBarrier(reportError); |
| 1468 | |
| 1469 | #if !defined(CMAKE_BOOTSTRAP) |
| 1470 | this->GetGlobalGenerator()->GetFileLockPool().PopFunctionScope(); |
| 1471 | #endif |
| 1472 | |
| 1473 | this->PopLoopBlockBarrier(); |
| 1474 | } |
| 1475 | |
| 1476 | void cmMakefile::PushMacroScope(std::string const& fileName, |
| 1477 | cmPolicies::PolicyMap const& pm) |
no test coverage detected