NOLINTNEXTLINE(readability-const-return-type) // PR #3263
| 3344 | using result_type = decltype(*std::declval<Iterator &>()); |
| 3345 | // NOLINTNEXTLINE(readability-const-return-type) // PR #3263 |
| 3346 | result_type operator()(Iterator &it) const { return *it; } |
| 3347 | }; |
| 3348 | |
| 3349 | template <typename Iterator, typename SFINAE = decltype((*std::declval<Iterator &>()).first)> |
nothing calls this directly
no outgoing calls
no test coverage detected