From b794a7162b0c5fb8a5e320ce111a8dc815de6461 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 13 Aug 2015 17:52:48 +0100 Subject: [PATCH] Add float128_type typedef dimilar to int128_type. --- include/boost/config/suffix.hpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/boost/config/suffix.hpp b/include/boost/config/suffix.hpp index c0ba3339..91a62acb 100644 --- a/include/boost/config/suffix.hpp +++ b/include/boost/config/suffix.hpp @@ -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 --------------------------//