diff options
author | ngc224 <[email protected]> | 2025-04-10 10:53:51 +0300 |
---|---|---|
committer | ngc224 <[email protected]> | 2025-04-10 11:08:25 +0300 |
commit | a93f761ca963e38b0cf4d0dc23b9209b1564d28a (patch) | |
tree | 4e0c6b8bb161a8fc582ec64af35dd4f04686e5ec /library/cpp | |
parent | 3fa4bd2db112c9eaaaf4886476264ae8778d9e4f (diff) |
Use consistent format and naming in blocks' logging
commit_hash:77f144acd2d648f4e32055553be332f1d25d6106
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/yt/string/format-inl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yt/string/format-inl.h b/library/cpp/yt/string/format-inl.h index 22da423f893..01214399e8e 100644 --- a/library/cpp/yt/string/format-inl.h +++ b/library/cpp/yt/string/format-inl.h @@ -253,7 +253,7 @@ void FormatCompactIntervalRange( auto first = range.begin(); auto last = first; - auto current = first + 1; + auto current = std::next(first); while (current != range.end()) { if (valueGetter(current) != valueGetter(last) + 1) { |