Don't use std::string_view's iterators as pointers to chars

Note: constructing std::string_view from iterators is OK in C++20, but we are not there yet.
Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
This commit is contained in:
Osyotr 2024-03-18 00:26:59 +03:00 committed by Alexander Borsuk
parent fd535d00a2
commit 718990ec8f
2 changed files with 4 additions and 3 deletions

View file

@ -226,7 +226,7 @@ void Trim(std::string_view & sv)
if (beg != sv.end())
{
auto const end = std::find_if(sv.crbegin(), sv.crend(), [](auto c) { return !std::isspace(c); }).base();
sv = std::string_view(beg, std::distance(beg, end));
sv = std::string_view(sv.data() + std::distance(sv.begin(), beg), std::distance(beg, end));
}
else
sv = {};

View file

@ -514,9 +514,10 @@ namespace impl
{
template <typename T> bool from_sv(std::string_view sv, T & t)
{
auto const res = std::from_chars(sv.begin(), sv.end(), t);
auto const end = sv.data() + sv.size();
auto const res = std::from_chars(sv.data(), end, t);
return (res.ec != std::errc::invalid_argument && res.ec != std::errc::result_out_of_range &&
res.ptr == sv.end());
res.ptr == end);
}
} // namespace impl