| 1178 | return *this; |
| 1179 | } |
| 1180 | auto operator*() -> throwing_iterator& { return *this; } |
| 1181 | auto operator++() -> throwing_iterator& { return *this; } |
| 1182 | auto operator++(int) -> throwing_iterator { return *this; } |
| 1183 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected