diff options
author | paxakor <paxakor@yandex-team.ru> | 2022-02-10 16:47:32 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:32 +0300 |
commit | 7fdbed62e54b804e2c12b86a2c2bab12f61065df (patch) | |
tree | 180a6ae33c1213a60fb42829eccb42cc00fc6955 /util/string/vector.h | |
parent | 7199613d295246a07c2f7b331fbb3128936039dc (diff) | |
download | ydb-7fdbed62e54b804e2c12b86a2c2bab12f61065df.tar.gz |
Restoring authorship annotation for <paxakor@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/string/vector.h')
-rw-r--r-- | util/string/vector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/string/vector.h b/util/string/vector.h index e36c348bbe..2495ed5b64 100644 --- a/util/string/vector.h +++ b/util/string/vector.h @@ -113,7 +113,7 @@ inline TString JoinVectorIntoString(const TVector<T>& v, const TStringBuf delim) template <typename T> inline TString JoinVectorIntoString(const TVector<T>& v, size_t index, size_t count, const TStringBuf delim) { - Y_ASSERT(index + count <= v.size() && "JoinVectorIntoString(): index or count out of range"); + Y_ASSERT(index + count <= v.size() && "JoinVectorIntoString(): index or count out of range"); return JoinStrings(v.begin() + index, v.begin() + index + count, delim); } |