summaryrefslogtreecommitdiff
path: root/boost/type_traits/has_divides.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/type_traits/has_divides.hpp')
-rw-r--r--boost/type_traits/has_divides.hpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/boost/type_traits/has_divides.hpp b/boost/type_traits/has_divides.hpp
index 277c2da4b6..869e907f6a 100644
--- a/boost/type_traits/has_divides.hpp
+++ b/boost/type_traits/has_divides.hpp
@@ -13,22 +13,22 @@
#define BOOST_TT_TRAIT_OP /
#define BOOST_TT_FORBIDDEN_IF\
/* pointer with pointer or fundamental */\
- ::boost::type_traits::ice_or<\
- ::boost::type_traits::ice_and<\
- ::boost::is_pointer< Lhs_noref >::value,\
- ::boost::type_traits::ice_or<\
- ::boost::is_fundamental< Rhs_nocv >::value,\
+ (\
+ (\
+ ::boost::is_pointer< Lhs_noref >::value && \
+ ( \
+ ::boost::is_fundamental< Rhs_nocv >::value || \
::boost::is_pointer< Rhs_noref >::value\
- >::value\
- >::value,\
- ::boost::type_traits::ice_and<\
- ::boost::is_pointer< Rhs_noref >::value,\
- ::boost::type_traits::ice_or<\
- ::boost::is_fundamental< Lhs_nocv >::value,\
+ )\
+ )||\
+ (\
+ ::boost::is_pointer< Rhs_noref >::value && \
+ ( \
+ ::boost::is_fundamental< Lhs_nocv >::value || \
::boost::is_pointer< Lhs_noref >::value\
- >::value\
- >::value\
- >::value
+ )\
+ )\
+ )
#include <boost/type_traits/detail/has_binary_operator.hpp>