post-increment (it++)
| 11529 | |
| 11530 | /// post-increment (it++) |
| 11531 | json_reverse_iterator const operator++(int) |
| 11532 | { |
| 11533 | return static_cast<json_reverse_iterator>(base_iterator::operator++(1)); |
| 11534 | } |
| 11535 | |
| 11536 | /// pre-increment (++it) |
| 11537 | json_reverse_iterator& operator++() |
nothing calls this directly
no test coverage detected