| 65 | namespace cs { |
| 66 | namespace codecvt { |
| 67 | std::u32string utf8::local2wide(const std::deque<char> &local) |
| 68 | { |
| 69 | std::u32string ustr; |
| 70 | ::utf8::utf8to32(local.begin(), local.end(), std::back_inserter(ustr)); |
| 71 | return ustr; |
| 72 | } |
| 73 | |
| 74 | std::u32string utf8::local2wide(std::string_view local) |
| 75 | { |
no test coverage detected