| 2626 | } |
| 2627 | |
| 2628 | bool parse_array(const std::string& line, |
| 2629 | std::string& out, |
| 2630 | std::vector<w_char>& out_utf16, |
| 2631 | int utf8, |
| 2632 | int ln) { |
| 2633 | if (!parse_string(line, out, ln)) |
| 2634 | return false; |
| 2635 | if (utf8) { |
| 2636 | u8_u16(out_utf16, out); |
| 2637 | std::sort(out_utf16.begin(), out_utf16.end()); |
| 2638 | } |
| 2639 | return true; |
| 2640 | } |
no test coverage detected