Add float128_type typedef dimilar to int128_type.

This commit is contained in:
jzmaddock
2015-08-13 17:52:48 +01:00
parent 15fa6fd8b9
commit b794a7162b

View File

@ -501,6 +501,16 @@ namespace boost{
# endif
}
#endif
// same again for __float128:
#if defined(BOOST_HAS_FLOAT128) && defined(__cplusplus)
namespace boost {
# ifdef __GNUC__
__extension__ typedef __float128 float128_type;
# else
typedef __float128 float128_type;
# endif
}
#endif
// BOOST_[APPEND_]EXPLICIT_TEMPLATE_[NON_]TYPE macros --------------------------//