| 8 | #include "cmValue.h" |
| 9 | |
| 10 | cmTest::cmTest(cmMakefile* mf) |
| 11 | : Backtrace(mf->GetBacktrace()) |
| 12 | , PolicyStatusCMP0158(mf->GetPolicyStatus(cmPolicies::CMP0158)) |
| 13 | , PolicyStatusCMP0178(mf->GetPolicyStatus(cmPolicies::CMP0178)) |
| 14 | { |
| 15 | this->Makefile = mf; |
| 16 | this->OldStyle = true; |
| 17 | } |
| 18 | |
| 19 | cmTest::~cmTest() = default; |
| 20 |
nothing calls this directly
no test coverage detected