diff options
author | onpopov <[email protected]> | 2022-02-10 16:50:38 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:50:38 +0300 |
commit | 8773f7661194d4c0bdb1e3937b2ff7ae01dd13f8 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic | |
parent | 84a29dd4980d5b39615e453f289bd1a81213296d (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/generic')
-rw-r--r-- | util/generic/strbase.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/generic/strbase.h b/util/generic/strbase.h index 67e9773f247..ab39fc7537f 100644 --- a/util/generic/strbase.h +++ b/util/generic/strbase.h @@ -530,8 +530,8 @@ public: inline size_t find_last_of(const TStringView set, size_t pos = npos) const noexcept { return find_last_of(set.data(), pos, set.length()); - } - + } + inline size_t find_last_of(const TCharType* set, size_t pos, size_t n) const noexcept { return AsStringView().find_last_of(set, pos, n); } |