post-increment (it++)
| 13601 | |
| 13602 | /// post-increment (it++) |
| 13603 | json_reverse_iterator operator++(int)& // NOLINT(cert-dcl21-cpp) |
| 13604 | { |
| 13605 | return static_cast<json_reverse_iterator>(base_iterator::operator++(1)); |
| 13606 | } |
| 13607 | |
| 13608 | /// pre-increment (++it) |
| 13609 | json_reverse_iterator& operator++() |
nothing calls this directly
no test coverage detected