File indexing completed on 2025-01-18 09:33:53
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_FUSION_CONTAINER_SET_DETAIL_VALUE_OF_DATA_IMPL_HPP
0009 #define BOOST_FUSION_CONTAINER_SET_DETAIL_VALUE_OF_DATA_IMPL_HPP
0010
0011 #include <boost/fusion/support/config.hpp>
0012
0013 namespace boost { namespace fusion { namespace extension
0014 {
0015 template <typename>
0016 struct value_of_data_impl;
0017
0018 template <>
0019 struct value_of_data_impl<set_iterator_tag>
0020 : value_of_impl<set_iterator_tag>
0021 {};
0022 }}}
0023
0024 #endif