diff options
author | finder <finder@yandex-team.ru> | 2022-02-10 16:49:24 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:24 +0300 |
commit | abbbaf4075fbaa0ff4ce9faa1188089466a21dbe (patch) | |
tree | 4beaffe75727862ab08110c7ce520dc7aa49ff30 /util/string | |
parent | 46f4bc6ab513a0ed1407f9095284a00e20f05adc (diff) | |
download | ydb-abbbaf4075fbaa0ff4ce9faa1188089466a21dbe.tar.gz |
Restoring authorship annotation for <finder@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/string')
-rw-r--r-- | util/string/split.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/string/split.h b/util/string/split.h index bc46d9e64c..8904d42801 100644 --- a/util/string/split.h +++ b/util/string/split.h @@ -398,9 +398,9 @@ struct TSimplePusher { template <class T> static inline void Split(char* buf, char ch, T* res) { res->resize(0); - if (*buf == 0) - return; - + if (*buf == 0) + return; + TCharDelimiter<char> delim(ch); TSimplePusher<T> pusher = {res}; |