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

Function DumpToJsonArray

Source/CTest/cmCTestMultiProcessHandler.cxx:1060–1067  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1058}
1059
1060static Json::Value DumpToJsonArray(std::set<std::string> const& values)
1061{
1062 Json::Value jsonArray = Json::arrayValue;
1063 for (auto const& it : values) {
1064 jsonArray.append(it);
1065 }
1066 return jsonArray;
1067}
1068
1069static Json::Value DumpToJsonArray(std::vector<std::string> const& values)
1070{

Callers 2

DumpCTestPropertiesFunction · 0.85
DumpCTestInfoFunction · 0.85

Calls 1

appendMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…