| 1525 | } |
| 1526 | |
| 1527 | ~BuildsystemFileScope() |
| 1528 | { |
| 1529 | this->PopListFileVars(); |
| 1530 | this->Makefile->PopFunctionBlockerBarrier(this->ReportError); |
| 1531 | this->Makefile->PopSnapshot(this->ReportError); |
| 1532 | #if !defined(CMAKE_BOOTSTRAP) |
| 1533 | this->GG->GetFileLockPool().PopFileScope(); |
| 1534 | #endif |
| 1535 | this->GG->SetCurrentMakefile(this->CurrentMakefile); |
| 1536 | this->GG->GetCMakeInstance()->SetCurrentSnapshot(this->Snapshot); |
| 1537 | } |
| 1538 | |
| 1539 | void Quiet() { this->ReportError = false; } |
| 1540 |
nothing calls this directly
no test coverage detected