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

llvm-svn: 348828
This commit is contained in:
Marshall Clow
2018-12-11 04:35:44 +00:00
parent 6368818fd5
commit 7dad0bd68b
91 changed files with 1152 additions and 103 deletions

View File

@@ -37,14 +37,12 @@ void test () {
}
int main () {
typedef std::string_view string_view;
typedef std::u16string_view u16string_view;
typedef std::u32string_view u32string_view;
typedef std::wstring_view wstring_view;
test<string_view> ();
test<u16string_view> ();
test<u32string_view> ();
test<wstring_view> ();
test<std::string_view> ();
test<std::u16string_view> ();
#if defined(__cpp_lib_char8_t) && __cpp_lib_char8_t >= 201811L
test<std::u8string_view> ();
#endif
test<std::u32string_view> ();
test<std::wstring_view> ();
}