| //===----------------------------------------------------------------------===// |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| //===----------------------------------------------------------------------===// |
| // template <class Elem, unsigned long Maxcode = 0x10ffff, |
| // codecvt_mode Mode = (codecvt_mode)0> |
| // : public codecvt<Elem, char, mbstate_t> |
| // int max_length() const throw(); |
| typedef std::codecvt_utf8<wchar_t> C; |
| typedef std::codecvt_utf8<wchar_t, 0xFFFFFFFF, std::consume_header> C; |
| typedef std::codecvt_utf8<char16_t> C; |
| typedef std::codecvt_utf8<char16_t, 0xFFFFFFFF, std::consume_header> C; |
| typedef std::codecvt_utf8<char32_t> C; |
| typedef std::codecvt_utf8<char32_t, 0xFFFFFFFF, std::consume_header> C; |