diff options
author | gulin <gulin@yandex-team.ru> | 2022-02-10 16:47:31 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:31 +0300 |
commit | c807aae441c17fc7f577c35757a4b6e0bd909802 (patch) | |
tree | fc3268f43edbf6f854c0266cd05b91952484179b /library/cpp/containers/atomizer/atomizer.h | |
parent | d06e6190fa85c1fb4b011631503d53ea39942ff9 (diff) | |
download | ydb-c807aae441c17fc7f577c35757a4b6e0bd909802.tar.gz |
Restoring authorship annotation for <gulin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/containers/atomizer/atomizer.h')
-rw-r--r-- | library/cpp/containers/atomizer/atomizer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/containers/atomizer/atomizer.h b/library/cpp/containers/atomizer/atomizer.h index 5e40f47ab9..475abd7a71 100644 --- a/library/cpp/containers/atomizer/atomizer.h +++ b/library/cpp/containers/atomizer/atomizer.h @@ -53,7 +53,7 @@ public: *ptr += pool.Begin() - old_begin; order.push_back((*ins.first).first); // copy of 'key' } - return (ui32)(*ins.first).second; + return (ui32)(*ins.first).second; } ui32 perm_string_to_atom(const char* key) { @@ -68,7 +68,7 @@ public: if (it == end()) return 0; // INVALID_ATOM else - return (ui32)(*it).second; + return (ui32)(*it).second; } const char* get_atom_name(ui32 atom) const { if (atom && atom <= size()) |