Home | History | Annotate | Download | only in conversions.string

Lines Matching refs:Codecvt

12 // wstring_convert<Codecvt, Elem, Wide_alloc, Byte_alloc>
14 // wstring_convert(Codecvt* pcvt = new Codecvt);
17 #include <codecvt>
23 typedef std::codecvt_utf8<wchar_t> Codecvt;
24 typedef std::wstring_convert<Codecvt> Myconv;
29 typedef std::codecvt_utf8<wchar_t> Codecvt;
30 typedef std::wstring_convert<Codecvt> Myconv;
31 Myconv myconv(new Codecvt);
34 static_assert(!std::is_convertible<Codecvt*, Myconv>::value, "");
35 static_assert( std::is_constructible<Myconv, Codecvt*>::value, "");