123456789101112131415161718192021222324252627282930 |
- #ifndef BOOST_PHOENIX_ALGORITHM_DETAIL_BEGIN_HPP
- #define BOOST_PHOENIX_ALGORITHM_DETAIL_BEGIN_HPP
- #include <boost/range/iterator.hpp>
- #include <boost/range/begin.hpp>
- namespace boost { namespace phoenix {
- namespace detail
- {
- template<class R>
- typename range_iterator<R>::type
- begin_(R& r)
- {
- return boost::begin(r);
- }
- }
- }}
- #endif
|