| 34 | } |
| 35 | template<typename I> |
| 36 | auto next(I it) |
| 37 | { |
| 38 | #if BOOST_PARSER_DETAIL_TEXT_USE_CONCEPTS |
| 39 | return std::ranges::next(it); |
| 40 | #else |
| 41 | return std::next(it); |
| 42 | #endif |
| 43 | } |
| 44 | |
| 45 | template<typename T> |
| 46 | using remove_cv_ref_t = |
no outgoing calls
no test coverage detected