diff options
author | bulatman <bulatman@yandex-team.com> | 2023-06-10 13:55:11 +0300 |
---|---|---|
committer | bulatman <bulatman@yandex-team.com> | 2023-06-10 13:55:11 +0300 |
commit | d570836295decdb827b4f95d75ebf2d8d9232b9b (patch) | |
tree | 859f3511dc3166e935b9c3438f6beee050816001 /library/cpp/iterator | |
parent | 91497eb27263e2feb35b53a90773e7207752a2ec (diff) | |
download | ydb-d570836295decdb827b4f95d75ebf2d8d9232b9b.tar.gz |
Remove extra semicolon (library)
Diffstat (limited to 'library/cpp/iterator')
-rw-r--r-- | library/cpp/iterator/mapped.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/iterator/mapped.h b/library/cpp/iterator/mapped.h index 6c5e763184..6a4522e865 100644 --- a/library/cpp/iterator/mapped.h +++ b/library/cpp/iterator/mapped.h @@ -12,7 +12,7 @@ namespace NIteratorPrivate { return std::is_same_v<typename std::iterator_traits<TIterator>::iterator_category, std::random_access_iterator_tag>; } -}; +} template <class TIterator, class TMapper> |