| 290 | } |
| 291 | |
| 292 | void JsonReader::write_vector(const std::vector<std::string> &keys, const std::vector<std::string> &value) |
| 293 | { |
| 294 | json j_vec(value); |
| 295 | json::json_pointer ptr = json::json_pointer(to_json_pointer(keys)); |
| 296 | j[ptr] = j_vec; |
| 297 | } |
| 298 | |
| 299 | void JsonReader::write_int64_vector(const std::vector<std::string> &keys, const std::vector<int> &value) |
| 300 | { |
no test coverage detected