From cd9db7728a1d45492b568537df9af74b54d8ecd2 Mon Sep 17 00:00:00 2001 From: ckormanyos Date: Tue, 6 May 2025 19:39:47 +0200 Subject: [PATCH] Fix recursive cend() via known line from above --- include/bpstd/string_view.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bpstd/string_view.hpp b/include/bpstd/string_view.hpp index 0066fbf..e31e661 100644 --- a/include/bpstd/string_view.hpp +++ b/include/bpstd/string_view.hpp @@ -1186,7 +1186,7 @@ typename bpstd::basic_string_view::const_iterator bpstd::basic_string_view::cend() const noexcept { - return cend(); + return m_str + m_size; } template