| 5169 | } |
| 5170 | |
| 5171 | iteration_proxy_value operator++(int)& // NOLINT(cert-dcl21-cpp) |
| 5172 | { |
| 5173 | auto tmp = iteration_proxy_value(anchor, array_index); |
| 5174 | ++anchor; |
| 5175 | ++array_index; |
| 5176 | return tmp; |
| 5177 | } |
| 5178 | |
| 5179 | /// equality operator (needed for InputIterator) |
| 5180 | bool operator==(const iteration_proxy_value& o) const |
nothing calls this directly
no test coverage detected