| 652 | } |
| 653 | |
| 654 | cmMakefile::IncludeScope::~IncludeScope() |
| 655 | { |
| 656 | this->PopListFileVars(); |
| 657 | if (!this->NoPolicyScope) { |
| 658 | // Pop the scope we pushed for the script. |
| 659 | this->Makefile->PopPolicy(); |
| 660 | } |
| 661 | this->Makefile->PopSnapshot(this->ReportError); |
| 662 | |
| 663 | this->Makefile->PopFunctionBlockerBarrier(this->ReportError); |
| 664 | |
| 665 | this->Makefile->Backtrace = this->Makefile->Backtrace.Pop(); |
| 666 | } |
| 667 | |
| 668 | bool cmMakefile::ReadDependentFile(std::string const& filename, |
| 669 | bool noPolicyScope) |
nothing calls this directly
no test coverage detected