summaryrefslogtreecommitdiffstats
path: root/library/cpp/iterator
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/iterator')
-rw-r--r--library/cpp/iterator/mapped.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/iterator/mapped.h b/library/cpp/iterator/mapped.h
index 6c5e7631847..486ff7583a2 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;
}