123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #if !defined(FUSION_END_IMPL_05062005_1226)
- #define FUSION_END_IMPL_05062005_1226
- #include <boost/fusion/support/config.hpp>
- namespace boost { namespace fusion
- {
- struct iterator_range_tag;
- namespace extension
- {
- template <typename Tag>
- struct end_impl;
- template <>
- struct end_impl<iterator_range_tag>
- {
- template <typename Sequence>
- struct apply
- {
- typedef typename Sequence::end_type type;
- BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
- static type
- call(Sequence& s)
- {
- return s.last;
- }
- };
- };
- }
- }}
- #endif
|