summaryrefslogtreecommitdiffstats
path: root/util/generic/map.h
diff options
context:
space:
mode:
authorosado <[email protected]>2022-02-10 16:49:18 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:49:18 +0300
commit3ed175181ceac225ee14e4519492ad2967a7bd73 (patch)
treea1a8375fb33669212c8d4f3eb2e50f4f719b6533 /util/generic/map.h
parent883d905c560ebed4b7f38d021b424d75c4521a6f (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/generic/map.h')
-rw-r--r--util/generic/map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/generic/map.h b/util/generic/map.h
index b5001b56c03..2d9ccdc5e4d 100644
--- a/util/generic/map.h
+++ b/util/generic/map.h
@@ -11,7 +11,7 @@
#include <map>
#include <memory>
-template <class K, class V, class Less, class A>
+template <class K, class V, class Less, class A>
class TMap: public std::map<K, V, Less, TReboundAllocator<A, std::pair<const K, V>>>, public TMapOps<TMap<K, V, Less, A>> {
using TBase = std::map<K, V, Less, TReboundAllocator<A, std::pair<const K, V>>>;
@@ -27,7 +27,7 @@ public:
}
};
-template <class K, class V, class Less, class A>
+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>>>;