include/rtl/string.hxx | 6 +++--- include/rtl/ustring.hxx | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-)
New commits: commit e67e5155709bc1b39779750a194a535ae4e28e83 Author: Noel Grandin <noel.gran...@collabora.co.uk> AuthorDate: Mon Aug 5 10:42:06 2024 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Mon Aug 5 19:29:48 2024 +0200 fix @since tags after commit 1bbcc3fdf312971ffb681b332f47369739d95dde Author: Noel Grandin <noel.gran...@collabora.co.uk> Date: Tue May 14 14:56:47 2024 +0200 O[U]String overloads that return view for rest parameter Change-Id: Ie1d844f4286a14aa9d7cbb3831460c17103582c0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171477 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/include/rtl/string.hxx b/include/rtl/string.hxx index 545059a18d91..b98e9e01f674 100644 --- a/include/rtl/string.hxx +++ b/include/rtl/string.hxx @@ -1105,7 +1105,7 @@ public: @return true if and only if the given str appears as a substring at the start of this string - @since LibreOffice 24.2 + @since LibreOffice 25.2 */ bool startsWith(std::string_view str, std::string_view * rest) const { assert(rest); @@ -1275,7 +1275,7 @@ public: start of this string, ignoring the case of ASCII letters ("A"--"Z" and "a"--"z") - @since LibreOffice 24.2 + @since LibreOffice 25.2 */ bool startsWithIgnoreAsciiCase(std::string_view str, std::string_view * rest) const @@ -1434,7 +1434,7 @@ public: @return true if and only if the given str appears as a substring at the end of this string - @since LibreOffice 24.2 + @since LibreOffice 25.2 */ bool endsWith(std::string_view str, std::string_view * rest) const { assert(rest); diff --git a/include/rtl/ustring.hxx b/include/rtl/ustring.hxx index 3a6531b4f3a5..b73d0f75a68c 100644 --- a/include/rtl/ustring.hxx +++ b/include/rtl/ustring.hxx @@ -1493,7 +1493,7 @@ public: @return true if and only if the given str appears as a substring at the start of this string - @since LibreOffice 24.2 + @since LibreOffice 25.2 */ bool startsWith(std::u16string_view sv, std::u16string_view * rest) const { assert(rest); @@ -1704,7 +1704,7 @@ public: } /** This function accepts an ASCII string literal as its argument. - @since LibreOffice 24.2 + @since LibreOffice 25.2 */ template< typename T > typename libreoffice_internal::ConstCharArrayDetector< T, bool >::Type @@ -1781,7 +1781,7 @@ public: @return true if and only if the given str appears as a substring at the end of this string - @since LibreOffice 24.2 + @since LibreOffice 25.2 */ bool endsWith(std::u16string_view sv, std::u16string_view * rest) const { assert(rest); @@ -2012,7 +2012,7 @@ public: #if defined LIBO_INTERNAL_ONLY /** This function accepts an ASCII string literal as its argument. - @since LibreOffice 24.2 + @since LibreOffice 25.2 */ template< typename T > typename libreoffice_internal::ConstCharArrayDetector< T, bool >::Type @@ -2035,7 +2035,7 @@ public: } /** This function accepts an ASCII string literal as its argument. - @since LibreOffice 24.2 + @since LibreOffice 25.2 */ template< typename T > typename libreoffice_internal::ConstCharArrayDetector< T, bool >::Type