1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #ifndef _LIBCPP_EXPERIMENTAL_STRING
- #define _LIBCPP_EXPERIMENTAL_STRING
- #include <experimental/__config>
- #include <string>
- #include <experimental/memory_resource>
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- #pragma GCC system_header
- #endif
- _LIBCPP_BEGIN_NAMESPACE_LFTS_PMR
- template <class _CharT, class _Traits = char_traits<_CharT>>
- using basic_string =
- _VSTD::basic_string<_CharT, _Traits, polymorphic_allocator<_CharT>>;
- typedef basic_string<char> string;
- typedef basic_string<char16_t> u16string;
- typedef basic_string<char32_t> u32string;
- typedef basic_string<wchar_t> wstring;
- _LIBCPP_END_NAMESPACE_LFTS_PMR
- #endif
|