aboutsummaryrefslogtreecommitdiff
path: root/cutl/details/boost/type_traits/is_integral.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cutl/details/boost/type_traits/is_integral.hpp')
-rw-r--r--cutl/details/boost/type_traits/is_integral.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/cutl/details/boost/type_traits/is_integral.hpp b/cutl/details/boost/type_traits/is_integral.hpp
index 0082035..f5203bb 100644
--- a/cutl/details/boost/type_traits/is_integral.hpp
+++ b/cutl/details/boost/type_traits/is_integral.hpp
@@ -17,7 +17,7 @@
namespace cutl_details_boost {
//* is a type T an [cv-qualified-] integral type described in the standard (3.9.1p3)
-// as an extention we include long long, as this is likely to be added to the
+// as an extension we include long long, as this is likely to be added to the
// standard at a later date
#if defined( __CODEGEARC__ )
BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_integral,T,__is_integral(T))
@@ -68,6 +68,11 @@ BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral, ::cutl_details_boost::long_long_ty
BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,unsigned __int64,true)
BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,__int64,true)
#endif
+
+#ifdef BOOST_HAS_INT128
+BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,cutl_details_boost::int128_type,true)
+BOOST_TT_AUX_BOOL_TRAIT_CV_SPEC1(is_integral,cutl_details_boost::uint128_type,true)
+#endif
#endif // non-CodeGear implementation