File indexing completed on 2025-01-18 09:53:09
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_TT_HAS_COMPLEMENT_HPP_INCLUDED
0010 #define BOOST_TT_HAS_COMPLEMENT_HPP_INCLUDED
0011
0012 #define BOOST_TT_TRAIT_NAME has_complement
0013 #define BOOST_TT_TRAIT_OP ~
0014 #define BOOST_TT_FORBIDDEN_IF\
0015 (\
0016 \
0017 ::boost::is_pointer< Rhs_noref >::value || \
0018 \
0019 (\
0020 ::boost::is_fundamental< Rhs_noref >::value && \
0021 (! ::boost::is_integral< Rhs_noref >::value )\
0022 )\
0023 )
0024
0025
0026 #include <boost/type_traits/detail/has_prefix_operator.hpp>
0027
0028 #undef BOOST_TT_TRAIT_NAME
0029 #undef BOOST_TT_TRAIT_OP
0030 #undef BOOST_TT_FORBIDDEN_IF
0031
0032 #endif