Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:47:40

0001 // Copyright 2005 Daniel Wallin.
0002 // Copyright 2005 Joel de Guzman.
0003 // Copyright 2015 John Fletcher.
0004 //
0005 // Use, modification and distribution is subject to the Boost Software
0006 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0007 // http://www.boost.org/LICENSE_1_0.txt)
0008 //
0009 // Modeled after range_ex, Copyright 2004 Eric Niebler
0010 
0011 #ifndef BOOST_PHOENIX_ALGORITHM_DETAIL_END_HPP
0012 #define BOOST_PHOENIX_ALGORITHM_DETAIL_END_HPP
0013 
0014 //#include <boost/range/result_iterator.hpp> is deprecated
0015 #include <boost/range/iterator.hpp>
0016 #include <boost/range/end.hpp>
0017 
0018 namespace boost { namespace phoenix {
0019 namespace detail
0020 {
0021   template<class R>
0022   typename range_iterator<R>::type
0023   end_(R& r)
0024   {
0025       return boost::end(r);
0026   }
0027 }
0028 }}
0029 
0030 #endif