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 | c9c1ed47b5edc209537647dff9e5686a2ff7bda9 (patch) | |
tree | b96a21942531f7842fd8924ae0856772662f2a19 /library/cpp | |
parent | fd3f62e99d2990dd93788742aaf6a9bd5cb4d5a3 (diff) | |
download | ydb-c9c1ed47b5edc209537647dff9e5686a2ff7bda9.tar.gz |
Restoring authorship annotation for <ivtrubachev@yandex-team.ru>. Commit 1 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 ac12ed35fe..065af16b60 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)>{} ); |