diff options
author | omakovski <omakovski@yandex-team.ru> | 2022-02-10 16:49:30 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:30 +0300 |
commit | 5feb3b4d96aaa42ce546426241c48d626e6d6685 (patch) | |
tree | 728359f39c2eeab2b894f3d8664ea1499ffde216 /library/cpp/iterator | |
parent | 077ab504815199e62ffc54daee873cf1d6b64297 (diff) | |
download | ydb-5feb3b4d96aaa42ce546426241c48d626e6d6685.tar.gz |
Restoring authorship annotation for <omakovski@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/iterator')
-rw-r--r-- | library/cpp/iterator/mapped.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/iterator/mapped.h b/library/cpp/iterator/mapped.h index 6c5e763184..486ff7583a 100644 --- a/library/cpp/iterator/mapped.h +++ b/library/cpp/iterator/mapped.h @@ -68,9 +68,9 @@ public: TSelf operator+(difference_type n) const { return TSelf(Iter + n, Mapper); } - TSelf operator-(difference_type n) const { - return TSelf(Iter - n, Mapper); - } + TSelf operator-(difference_type n) const { + return TSelf(Iter - n, Mapper); + } difference_type operator-(const TSelf& other) const { return Iter - other.Iter; } |