diff options
| author | paxakor <[email protected]> | 2022-02-10 16:47:32 +0300 |
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:47:32 +0300 |
| commit | 7fdbed62e54b804e2c12b86a2c2bab12f61065df (patch) | |
| tree | 180a6ae33c1213a60fb42829eccb42cc00fc6955 /library/cpp/deprecated/split/split_iterator.h | |
| parent | 7199613d295246a07c2f7b331fbb3128936039dc (diff) | |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/deprecated/split/split_iterator.h')
| -rw-r--r-- | library/cpp/deprecated/split/split_iterator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/deprecated/split/split_iterator.h b/library/cpp/deprecated/split/split_iterator.h index 0eacc29228e..d6c0ab5fbc3 100644 --- a/library/cpp/deprecated/split/split_iterator.h +++ b/library/cpp/deprecated/split/split_iterator.h @@ -284,7 +284,7 @@ public: return TStringBuf(Split.Str + region.Begin, region.End - region.Begin); } - const TString& NextString() { + const TString& NextString() { if (!CurrentStroka) CurrentStroka = new TString(); TSizeTRegion region = Next(); @@ -313,5 +313,5 @@ void Split(const TSplit& split, TSplitTokens* words) { words->clear(); TSplitIterator<TSplit> it(split); while (!it.Eof()) - words->push_back(it.NextString()); + words->push_back(it.NextString()); } |
