diff options
author | anelyubin <anelyubin@yandex-team.ru> | 2022-02-10 16:49:40 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:40 +0300 |
commit | 9dac44a55ede6f682527e82880847f99bd7b2d93 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/strbuf.h | |
parent | 8d333d5e773f6b0ef31e7b3c92339af7e71413f6 (diff) | |
download | ydb-9dac44a55ede6f682527e82880847f99bd7b2d93.tar.gz |
Restoring authorship annotation for <anelyubin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/strbuf.h')
-rw-r--r-- | util/generic/strbuf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/generic/strbuf.h b/util/generic/strbuf.h index b37f7c94062..70b9360d580 100644 --- a/util/generic/strbuf.h +++ b/util/generic/strbuf.h @@ -393,7 +393,7 @@ public: return NextTokTemplate(delim, tok); } - bool NextTok(TdSelf delim, TdSelf& tok) { + bool NextTok(TdSelf delim, TdSelf& tok) { return NextTokTemplate(delim, tok); } @@ -401,7 +401,7 @@ public: return RNextTokTemplate(delim, tok); } - bool RNextTok(TdSelf delim, TdSelf& tok) { + bool RNextTok(TdSelf delim, TdSelf& tok) { return RNextTokTemplate(delim, tok); } @@ -425,11 +425,11 @@ public: return RNextTokTemplate(delim); } - TdSelf NextTok(TdSelf delim) { + TdSelf NextTok(TdSelf delim) { return NextTokTemplate(delim); } - TdSelf RNextTok(TdSelf delim) { + TdSelf RNextTok(TdSelf delim) { return RNextTokTemplate(delim); } |