| 1058 | } |
| 1059 | |
| 1060 | static 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 | |
| 1069 | static Json::Value DumpToJsonArray(std::vector<std::string> const& values) |
| 1070 | { |
no test coverage detected
searching dependent graphs…