]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/nana/fix-build-error.patch
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / tools / vcpkg / ports / nana / fix-build-error.patch
1 diff --git a/source/system/split_string.cpp b/source/system/split_string.cpp
2 index 8269db6..c40016b 100644
3 --- a/source/system/split_string.cpp
4 +++ b/source/system/split_string.cpp
5 @@ -18,7 +18,7 @@ std::vector<split_string_type> split_string (const split_string_type& text, char
6 sep_pos = text.find(sep, sep_pos);
7 sep_pos = (text.npos == sep_pos ? text.size() : sep_pos);
8 const std::size_t end = sep_pos;
9 - while (sep_pos < text.size() and sep == text[sep_pos]) {
10 + while (sep_pos < text.size() && sep == text[sep_pos]) {
11 ++sep_pos;
12 }
13