This commit is contained in:
Timur A. Fatkhullin
2024-10-29 01:21:24 +03:00
parent 1047b57013
commit 4e3e3ec60e
7 changed files with 109 additions and 87 deletions

View File

@@ -105,7 +105,7 @@ public:
} else {
T res;
auto bs = _byteSequence | std::views::drop_while([](const auto& ch) { return ch = ' '; });
auto bs = _byteSequence | std::views::drop_while([](const auto& ch) { return ch == ' '; });
auto found = std::ranges::search(bs, keyValueDelimiter);
if (!found.empty()) {