Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:09

0001 //  (C) Copyright 2009-2011 Frederic Bron.
0002 //
0003 //  Use, modification and distribution are subject to the Boost Software License,
0004 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0005 //  http://www.boost.org/LICENSE_1_0.txt).
0006 //
0007 //  See http://www.boost.org/libs/type_traits for most recent version including documentation.
0008 
0009 #ifndef BOOST_TT_HAS_DIVIDES_HPP_INCLUDED
0010 #define BOOST_TT_HAS_DIVIDES_HPP_INCLUDED
0011 
0012 #define BOOST_TT_TRAIT_NAME has_divides
0013 #define BOOST_TT_TRAIT_OP /
0014 #define BOOST_TT_FORBIDDEN_IF\
0015    /* pointer with pointer or fundamental */\
0016    (\
0017       (\
0018          ::boost::is_pointer< Lhs_noref >::value && \
0019          ( \
0020             ::boost::is_fundamental< Rhs_nocv >::value || \
0021             ::boost::is_pointer< Rhs_noref >::value\
0022          )\
0023       )||\
0024       (\
0025          ::boost::is_pointer< Rhs_noref >::value && \
0026          ( \
0027             ::boost::is_fundamental< Lhs_nocv >::value || \
0028             ::boost::is_pointer< Lhs_noref >::value\
0029           )\
0030       )\
0031       )
0032 
0033 
0034 #include <boost/type_traits/detail/has_binary_operator.hpp>
0035 
0036 #undef BOOST_TT_TRAIT_NAME
0037 #undef BOOST_TT_TRAIT_OP
0038 #undef BOOST_TT_FORBIDDEN_IF
0039 
0040 #endif