diff options
author | iroubin <iroubin@yandex-team.ru> | 2022-02-10 16:52:05 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:52:05 +0300 |
commit | e1eef5fd2ea964227b9be2c182415857c35e1290 (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb /util/generic/hash.h | |
parent | 94a4c65975048c0c31313b5105d9eb14cbde4985 (diff) | |
download | ydb-e1eef5fd2ea964227b9be2c182415857c35e1290.tar.gz |
Restoring authorship annotation for <iroubin@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/hash.h')
-rw-r--r-- | util/generic/hash.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/generic/hash.h b/util/generic/hash.h index 154e424b44..e46db21fa9 100644 --- a/util/generic/hash.h +++ b/util/generic/hash.h @@ -596,13 +596,13 @@ public: deinitialize_buckets(buckets); initialize_buckets_dynamic(buckets, ht.buckets.ExtSize()); } - + copy_from_dynamic(ht); } } return *this; } - + THashTable& operator=(THashTable&& ht) noexcept { basic_clear(); swap(ht); @@ -1519,7 +1519,7 @@ public: // THashMap has implicit copy/move constructors and copy-/move-assignment operators // because its implementation is backed by THashTable. // See hash_ut.cpp - + public: size_type size() const noexcept { return rep.size(); @@ -1844,7 +1844,7 @@ public: // THashMultiMap has implicit copy/move constructors and copy-/move-assignment operators // because its implementation is backed by THashTable. // See hash_ut.cpp - + public: size_type size() const { return rep.size(); |