1234567891011121314151617181920212223242526272829303132 |
- #if !defined(BOOST_FUSION_IS_SEQUENCE_IMPL_27122005_1648)
- #define BOOST_FUSION_IS_SEQUENCE_IMPL_27122005_1648
- #include <boost/fusion/support/config.hpp>
- #include <boost/mpl/bool.hpp>
- namespace boost { namespace fusion {
- struct boost_array_tag;
- namespace extension
- {
- template<typename Tag>
- struct is_sequence_impl;
- template<>
- struct is_sequence_impl<boost_array_tag>
- {
- template<typename Sequence>
- struct apply : mpl::true_ {};
- };
- }
- }}
- #endif
|