Second part of P0482 - char8_t. Reviewed as https://reviews.llvm.org/D55308

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@348828 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2018-12-11 04:35:44 +00:00
parent 21a8669ade
commit 96484477d1
91 changed files with 1152 additions and 103 deletions

View File

@@ -44,6 +44,9 @@ test()
int main()
{
test<std::string>();
#if defined(__cpp_lib_char8_t) && __cpp_lib_char8_t >= 201811L
test<std::u8string>();
#endif
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
test<std::u16string>();
test<std::u32string>();