| 235 | j[ptr] = value; |
| 236 | } |
| 237 | void JsonReader::write_string(const std::vector<std::string> &keys, const std::string &value) |
| 238 | { |
| 239 | json::json_pointer ptr = json::json_pointer(to_json_pointer(keys)); |
| 240 | j[ptr] = value; |
| 241 | } |
| 242 | |
| 243 | void JsonReader::write_map_to_array(const std::vector<std::string> &keys, const std::string fkey, const std::string skey, |
| 244 | const std::map<std::string, std::string> &value) |
no test coverage detected