| 34 | }; |
| 35 | |
| 36 | Cache::Cache(cmFileAPI& fileAPI, unsigned int version) |
| 37 | : FileAPI(fileAPI) |
| 38 | , Version(version) |
| 39 | , State(this->FileAPI.GetCMakeInstance()->GetState()) |
| 40 | { |
| 41 | static_cast<void>(this->Version); |
| 42 | } |
| 43 | |
| 44 | Json::Value Cache::Dump() |
| 45 | { |
nothing calls this directly
no test coverage detected