diff options
author | Stanislav Kirillov <staskirillov@gmail.com> | 2022-02-10 16:46:07 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:07 +0300 |
commit | 92fe2b1e7bc79f7b95adef61714fc003f6ea4a1c (patch) | |
tree | 817034f4ca57c9f841bb047ec94630c2e78a2b1d /library/cpp/dbg_output | |
parent | 53c76da6d9f6cc5a17f6029df396f0e3bc1ff47d (diff) | |
download | ydb-92fe2b1e7bc79f7b95adef61714fc003f6ea4a1c.tar.gz |
Restoring authorship annotation for Stanislav Kirillov <staskirillov@gmail.com>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/dbg_output')
-rw-r--r-- | library/cpp/dbg_output/dumpers.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/dbg_output/dumpers.h b/library/cpp/dbg_output/dumpers.h index 4868e97da0..d5725108a2 100644 --- a/library/cpp/dbg_output/dumpers.h +++ b/library/cpp/dbg_output/dumpers.h @@ -98,10 +98,10 @@ template <class T, class A> struct TDumper<std::vector<T, A>>: public TSeqDumper { }; -template <class T> -struct TDumper<TArrayRef<T>>: public TSeqDumper { -}; - +template <class T> +struct TDumper<TArrayRef<T>>: public TSeqDumper { +}; + template <class T, size_t N> struct TDumper<std::array<T, N>>: public TSeqDumper { }; |