diff options
author | tejblum <tejblum@yandex-team.ru> | 2022-02-10 16:48:02 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:02 +0300 |
commit | 6ab7e5f5ada0643a48d393717f443bd548706ffc (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /util/generic/map.h | |
parent | 2bf39531b4f50b889e946ac4866018678a4fb281 (diff) | |
download | ydb-6ab7e5f5ada0643a48d393717f443bd548706ffc.tar.gz |
Restoring authorship annotation for <tejblum@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/map.h')
-rw-r--r-- | util/generic/map.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/generic/map.h b/util/generic/map.h index cac7358bc8..b5001b56c0 100644 --- a/util/generic/map.h +++ b/util/generic/map.h @@ -1,5 +1,5 @@ #pragma once - + #include "fwd.h" #include "mapfindptr.h" @@ -25,8 +25,8 @@ public: inline bool contains(const K& key) const { return this->find(key) != this->end(); } -}; - +}; + template <class K, class V, class Less, class A> class TMultiMap: public std::multimap<K, V, Less, TReboundAllocator<A, std::pair<const K, V>>> { using TBase = std::multimap<K, V, Less, TReboundAllocator<A, std::pair<const K, V>>>; @@ -41,4 +41,4 @@ public: inline bool contains(const K& key) const { return this->find(key) != this->end(); } -}; +}; |