File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class map_iteratort
53
53
}
54
54
55
55
// / Postincrement operator
56
- const map_iteratort operator ++(int )
56
+ map_iteratort operator ++(int )
57
57
{
58
58
map_iteratort tmp (*this );
59
59
this ->operator ++();
@@ -136,7 +136,7 @@ class filter_iteratort
136
136
}
137
137
138
138
// / Postincrement operator
139
- const filter_iteratort operator ++(int )
139
+ filter_iteratort operator ++(int )
140
140
{
141
141
filter_iteratort tmp (*this );
142
142
this ->operator ++();
@@ -228,7 +228,7 @@ struct concat_iteratort
228
228
}
229
229
230
230
// / Postincrement operator
231
- const concat_iteratort operator ++(int )
231
+ concat_iteratort operator ++(int )
232
232
{
233
233
concat_iteratort tmp (first_begin, first_end, second_begin);
234
234
this ->operator ++();
@@ -317,7 +317,7 @@ struct zip_iteratort
317
317
}
318
318
319
319
// / Postincrement operator
320
- const zip_iteratort operator ++(int )
320
+ zip_iteratort operator ++(int )
321
321
{
322
322
zip_iteratort tmp (first_begin, first_end, second_begin, second_end);
323
323
this ->operator ++();
You can’t perform that action at this time.
0 commit comments