From e206cddc6f06f74106c470cb129af7c2afd46ea5 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 4 Oct 2021 20:27:14 +0300 Subject: [PATCH] Fix line endings --- doc/string_view.qbk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/string_view.qbk b/doc/string_view.qbk index e92c295..128c906 100644 --- a/doc/string_view.qbk +++ b/doc/string_view.qbk @@ -120,7 +120,8 @@ public: constexpr bool starts_with( Ch const* x ) const; constexpr bool ends_with( basic_string_view x ) const noexcept; - constexpr bool ends_with( Ch x ) const noexcept; constexpr bool ends_with( Ch const* x ) const; + constexpr bool ends_with( Ch x ) const noexcept; + constexpr bool ends_with( Ch const* x ) const; // searching @@ -152,7 +153,8 @@ public: constexpr size_type find_last_not_of( basic_string_view s, size_type pos = npos ) const noexcept; constexpr size_type find_last_not_of( Ch c, size_type pos = npos ) const noexcept; constexpr size_type find_last_not_of( Ch const* s, size_type pos, size_type n ) const; - constexpr size_type find_last_not_of( Ch const* s, size_type pos = npos ) const; }; + constexpr size_type find_last_not_of( Ch const* s, size_type pos = npos ) const; +}; typedef basic_string_view string_view; typedef basic_string_view wstring_view;