File indexing completed on 2025-01-18 09:31:08
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_FUSION_ADAPTED_STRUCT_DETAIL_SIZE_IMPL_HPP
0011 #define BOOST_FUSION_ADAPTED_STRUCT_DETAIL_SIZE_IMPL_HPP
0012
0013 namespace boost { namespace fusion { namespace extension
0014 {
0015 template<typename>
0016 struct size_impl;
0017
0018 template <>
0019 struct size_impl<struct_tag>
0020 {
0021 template <typename Seq>
0022 struct apply
0023 : struct_size<typename remove_const<Seq>::type>
0024 {};
0025 };
0026
0027 template <>
0028 struct size_impl<assoc_struct_tag>
0029 : size_impl<struct_tag>
0030 {};
0031 }}}
0032
0033 #endif