| //===----------------------------------------------------------------------===// |
| // The LLVM Compiler Infrastructure |
| // This file is dual licensed under the MIT and the University of Illinois Open |
| // Source Licenses. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| // constexpr basic_string_view () noexcept; |
| static_assert ( sv1.size() == 0, "" ); |
| static_assert ( sv1.empty(), ""); |
| assert ( sv1.size() == 0 ); |
| typedef std::string_view string_view; |
| typedef std::u16string_view u16string_view; |
| typedef std::u32string_view u32string_view; |
| typedef std::wstring_view wstring_view; |