commit | 7dad0bd68bf780b08b70c02a3b88374abfa6c152 | [log] [tgz] |
---|---|---|
author | Marshall Clow <mclow.lists@gmail.com> | Tue Dec 11 04:35:44 2018 +0000 |
committer | Marshall Clow <mclow.lists@gmail.com> | Tue Dec 11 04:35:44 2018 +0000 |
tree | f3dc02cfe3636fcb6bea07d6eba9e0c80aa71c33 | |
parent | 6368818fd572b49ecb062906ed4a379bca4447df [diff] [blame] |
Second part of P0482 - char8_t. Reviewed as https://reviews.llvm.org/D55308 llvm-svn: 348828
diff --git a/libcxx/test/std/strings/basic.string.hash/strings.pass.cpp b/libcxx/test/std/strings/basic.string.hash/strings.pass.cpp index d74e4857..449ad8f 100644 --- a/libcxx/test/std/strings/basic.string.hash/strings.pass.cpp +++ b/libcxx/test/std/strings/basic.string.hash/strings.pass.cpp
@@ -44,6 +44,9 @@ 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>();