Warning, file /include/boost/fusion/adapted/boost_array/detail/size_impl.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008 #if !defined(BOOST_FUSION_SIZE_IMPL_27122005_1251)
0009 #define BOOST_FUSION_SIZE_IMPL_27122005_1251
0010
0011 namespace boost { namespace fusion {
0012
0013 struct boost_array_tag;
0014
0015 namespace extension
0016 {
0017 template<typename T>
0018 struct size_impl;
0019
0020 template<>
0021 struct size_impl<boost_array_tag>
0022 {
0023 template<typename Sequence>
0024 struct apply : mpl::int_<Sequence::static_size> {};
0025 };
0026 }
0027 }}
0028
0029 #endif