summaryrefslogtreecommitdiffstats
path: root/util/generic/set.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
commit58cd0b86ed99a72df22479e26a20bc1c1e57e65e (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/set.h
parent3ed175181ceac225ee14e4519492ad2967a7bd73 (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/generic/set.h')
-rw-r--r--util/generic/set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/generic/set.h b/util/generic/set.h
index 63b6f34cc4e..4c437ca26f9 100644
--- a/util/generic/set.h
+++ b/util/generic/set.h
@@ -9,7 +9,7 @@
#include <memory>
#include <set>
-template <class K, class L, class A>
+template <class K, class L, class A>
class TSet: public std::set<K, L, TReboundAllocator<A, K>> {
public:
using TBase = std::set<K, L, TReboundAllocator<A, K>>;