aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/list.h
diff options
context:
space:
mode:
authorosado <osado@yandex-team.ru>2022-02-10 16:49:18 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:18 +0300
commit58cd0b86ed99a72df22479e26a20bc1c1e57e65e (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/list.h
parent3ed175181ceac225ee14e4519492ad2967a7bd73 (diff)
downloadydb-58cd0b86ed99a72df22479e26a20bc1c1e57e65e.tar.gz
Restoring authorship annotation for <osado@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/list.h')
-rw-r--r--util/generic/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/generic/list.h b/util/generic/list.h
index e42a2e9f44..7b0b8ffc72 100644
--- a/util/generic/list.h
+++ b/util/generic/list.h
@@ -9,7 +9,7 @@
#include <memory>
#include <utility>
-template <class T, class A>
+template <class T, class A>
class TList: public std::list<T, TReboundAllocator<A, T>> {
using TBase = std::list<T, TReboundAllocator<A, T>>;