MCPcopy Create free account
hub / github.com/Kitware/CMake / RAII

Method RAII

Source/cmMakefileProfilingData.cxx:109–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107}
108
109cmMakefileProfilingData::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
118cmMakefileProfilingData::RAII::RAII(RAII&& other) noexcept
119 : Data(other.Data)

Callers

nothing calls this directly

Calls 2

moveFunction · 0.85
StartEntryMethod · 0.80

Tested by

no test coverage detected