| 1076 | } |
| 1077 | |
| 1078 | static Json::Value DumpRegExToJsonArray( |
| 1079 | std::vector<std::pair<cmsys::RegularExpression, std::string>> const& values) |
| 1080 | { |
| 1081 | Json::Value jsonArray = Json::arrayValue; |
| 1082 | for (auto const& it : values) { |
| 1083 | jsonArray.append(it.second); |
| 1084 | } |
| 1085 | return jsonArray; |
| 1086 | } |
| 1087 | |
| 1088 | static Json::Value DumpMeasurementToJsonArray( |
| 1089 | std::map<std::string, std::string> const& values) |
no test coverage detected
searching dependent graphs…