summaryrefslogtreecommitdiff
path: root/include/string_view
AgeCommit message (Expand)Author
2017-12-20Fix the definitions of 'reference' and 'pointer' in string_view that no one u...Marshall Clow
2017-12-04Implement P0457R2: 'String Prefix and Suffix Checking' for c++2aMarshall Clow
2017-11-15More of P0600 - '[[nodiscard]] in the Library' mark empty() as nodiscard in s...Marshall Clow
2017-10-24Mark string_view's constructor from (ptr,len) as noexcept (an extension). Upd...Marshall Clow
2017-10-24Mark string_view literals as 'noexcept'. Fixes PR#25054. Thanks to Pavel K fo...Marshall Clow
2017-06-01Fix more unreserved namesEric Fiselier
2017-05-31[Libc++] Use #pragma push_macro/pop_macro to better handle min/max on WindowsEric Fiselier
2017-05-12Remove non-standard basic_string_view::clear() member.Eric Fiselier
2017-03-15Implement LWG#2761: 'basic_string should require that charT match traits::cha...Marshall Clow
2017-01-23Implement LWG#2778: basic_string_view is missing constexpr.Marshall Clow
2017-01-09Implement P0403R1 - 'Literal suffixes for basic_string_view'. Requires clang ...Marshall Clow
2017-01-04[NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VISEric Fiselier
2016-12-05Add module definitions for string_viewEric Fiselier
2016-11-14Fixes for LWG 2598, 2686, 2739, 2742, 2747, and 2759, which were adopted last...Marshall Clow
2016-10-27Move 'quoted' for string_view from <string_view> to <iomanip> (where the othe...Marshall Clow
2016-08-25Followon to r279744. Find the other exception types and make __throw_XXX rout...Marshall Clow
2016-07-28Add a bunch of noexcepts to char_traits and string_view.Marshall Clow
2016-07-21Fix some string_view tests that were failing when exceptions were disabled. A...Marshall Clow
2016-07-21Implement std::string_view as described in http://wg21.link/P0254R1. Reviewed...Marshall Clow