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