| 107 | } |
| 108 | |
| 109 | cmMakefileProfilingData::RAII::RAII(cmMakefileProfilingData& data, |
| 110 | std::string const& category, |
| 111 | std::string const& name, |
| 112 | cm::optional<Json::Value> args) |
| 113 | : Data(&data) |
| 114 | { |
| 115 | this->Data->StartEntry(category, name, std::move(args)); |
| 116 | } |
| 117 | |
| 118 | cmMakefileProfilingData::RAII::RAII(RAII&& other) noexcept |
| 119 | : Data(other.Data) |
nothing calls this directly
no test coverage detected