diff options
author | breakneck <breakneck@yandex-team.ru> | 2022-02-10 16:47:58 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:58 +0300 |
commit | e2021f9a0e54d13b7c48796318b13b66dc625e74 (patch) | |
tree | 5aed1691033eaf399ab80a10a137238922035fa8 /library/cpp/deprecated/split/split_iterator.h | |
parent | 83602b1b564b92a80a1526d113fa2846661dd10e (diff) | |
download | ydb-e2021f9a0e54d13b7c48796318b13b66dc625e74.tar.gz |
Restoring authorship annotation for <breakneck@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/deprecated/split/split_iterator.h')
-rw-r--r-- | library/cpp/deprecated/split/split_iterator.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/deprecated/split/split_iterator.h b/library/cpp/deprecated/split/split_iterator.h index 0eacc29228..d9b8c63858 100644 --- a/library/cpp/deprecated/split/split_iterator.h +++ b/library/cpp/deprecated/split/split_iterator.h @@ -63,7 +63,7 @@ private: public: explicit TSplitDelimiters(const char* s); - Y_FORCE_INLINE bool IsDelimiter(ui8 ch) const { + Y_FORCE_INLINE bool IsDelimiter(ui8 ch) const { return Delims[ch]; } }; @@ -80,11 +80,11 @@ public: TSplitBase(const char* str, size_t length); TSplitBase(const TString& s); - Y_FORCE_INLINE const char* GetString() const { + Y_FORCE_INLINE const char* GetString() const { return Str; } - Y_FORCE_INLINE size_t GetLength() const { + Y_FORCE_INLINE size_t GetLength() const { return Len; } |