| 1954 | |
| 1955 | template<bool SortedUTF32, typename Iter, typename Sentinel> |
| 1956 | constexpr auto make_char_range(Iter first, Sentinel last) |
| 1957 | { |
| 1958 | return char_range<Iter, Sentinel, SortedUTF32>{ |
| 1959 | BOOST_PARSER_SUBRANGE<Iter, Sentinel>{first, last}}; |
| 1960 | } |
| 1961 | |
| 1962 | template<bool SortedUTF32, typename R> |
| 1963 | constexpr auto make_char_range(R && r) noexcept |