summaryrefslogtreecommitdiff
path: root/boost/icl/type_traits/has_inverse.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/icl/type_traits/has_inverse.hpp')
-rw-r--r--boost/icl/type_traits/has_inverse.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/icl/type_traits/has_inverse.hpp b/boost/icl/type_traits/has_inverse.hpp
index e73d7af594..fb7c612b6a 100644
--- a/boost/icl/type_traits/has_inverse.hpp
+++ b/boost/icl/type_traits/has_inverse.hpp
@@ -18,8 +18,8 @@ namespace boost{ namespace icl
{
typedef has_inverse<Type> type;
BOOST_STATIC_CONSTANT(bool,
- value = (type_traits::ice_or<boost::is_signed<Type>::value,
- is_floating_point<Type>::value>::value));
+ value = ( boost::is_signed<Type>::value
+ || is_floating_point<Type>::value ) );
};
}} // namespace boost icl