| 658 | const char* id; |
| 659 | json_t* strJ; |
| 660 | json_object_foreach(rootJ, id, strJ) { |
| 661 | if (json_is_string(strJ)) { |
| 662 | translation[id] = std::string(json_string_value(strJ), json_string_length(strJ)); |
| 663 | } |
| 664 | } |
| 665 | } |
| 666 | } |
| 667 |
nothing calls this directly
no outgoing calls
no test coverage detected