! @brief post-increment (it++) @pre The iterator is initialized; i.e. `m_object != nullptr`. */
| 13150 | @pre The iterator is initialized; i.e. `m_object != nullptr`. |
| 13151 | */ |
| 13152 | iter_impl operator++(int)& // NOLINT(cert-dcl21-cpp) |
| 13153 | { |
| 13154 | auto result = *this; |
| 13155 | ++(*this); |
| 13156 | return result; |
| 13157 | } |
| 13158 | |
| 13159 | /*! |
| 13160 | @brief pre-increment (++it) |
no outgoing calls
no test coverage detected