iterator.hpp 738 B

12345678910111213141516171819202122232425
  1. // Copyright (C) 2020 T. Zachary Laine
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See
  4. // accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. #ifndef BOOST_PARSER_DETAIL_TEXT_DETAIL_ITERATOR_HPP
  7. #define BOOST_PARSER_DETAIL_TEXT_DETAIL_ITERATOR_HPP
  8. #include <boost/parser/detail/text/config.hpp>
  9. #include <boost/parser/detail/stl_interfaces/reverse_iterator.hpp>
  10. #include <iterator>
  11. namespace boost::parser::detail { namespace text { namespace detail {
  12. using reverse_char_iterator =
  13. parser::detail::stl_interfaces::reverse_iterator<char *>;
  14. using const_reverse_char_iterator =
  15. parser::detail::stl_interfaces::reverse_iterator<char const *>;
  16. }}}
  17. #endif