| 154 | } |
| 155 | |
| 156 | __inline_call |
| 157 | iter_type operator++ ( int ) |
| 158 | { /*---------------- post-increment */ |
| 159 | iter_type _tmp(*(iter_type*)this); |
| 160 | ++*this; |
| 161 | return _tmp; |
| 162 | } |
| 163 | __inline_call |
| 164 | iter_type operator-- ( int ) |
| 165 | { /*---------------- post-decrement */ |
nothing calls this directly
no outgoing calls
no test coverage detected