diff options
author | gulin <gulin@yandex-team.ru> | 2022-02-10 16:47:32 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:32 +0300 |
commit | 7199613d295246a07c2f7b331fbb3128936039dc (patch) | |
tree | c0748b5dcbade83af788c0abfa89c0383d6b779c /library/cpp/containers/atomizer/atomizer.h | |
parent | c807aae441c17fc7f577c35757a4b6e0bd909802 (diff) | |
download | ydb-7199613d295246a07c2f7b331fbb3128936039dc.tar.gz |
Restoring authorship annotation for <gulin@yandex-team.ru>. Commit 2 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 475abd7a71..5e40f47ab9 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()) |