diff options
author | ivtrubachev <ivtrubachev@yandex-team.ru> | 2022-02-10 16:50:57 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:57 +0300 |
commit | cdf09d3c9b04abf0ddc62045aa1ce08eabb12a76 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp | |
parent | c9c1ed47b5edc209537647dff9e5686a2ff7bda9 (diff) | |
download | ydb-cdf09d3c9b04abf0ddc62045aa1ce08eabb12a76.tar.gz |
Restoring authorship annotation for <ivtrubachev@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/iterator/zip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/iterator/zip.h b/library/cpp/iterator/zip.h index 065af16b60..ac12ed35fe 100644 --- a/library/cpp/iterator/zip.h +++ b/library/cpp/iterator/zip.h @@ -121,7 +121,7 @@ namespace NPrivate { //! Usage: for (auto [ai, bi, ci] : Zip(a, b, c)) {...} template <typename... TContainers> auto Zip(TContainers&&... containers) { - return ::NPrivate::TZipper<TContainers...>::Zip( + return ::NPrivate::TZipper<TContainers...>::Zip( std::forward<TContainers>(containers)..., std::make_index_sequence<sizeof...(TContainers)>{} ); |