summaryrefslogtreecommitdiff
path: root/boost/math/cstdfloat/cstdfloat_types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/math/cstdfloat/cstdfloat_types.hpp')
-rw-r--r--boost/math/cstdfloat/cstdfloat_types.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/math/cstdfloat/cstdfloat_types.hpp b/boost/math/cstdfloat/cstdfloat_types.hpp
index 9e0d00bf99..9b788cb485 100644
--- a/boost/math/cstdfloat/cstdfloat_types.hpp
+++ b/boost/math/cstdfloat/cstdfloat_types.hpp
@@ -211,10 +211,10 @@
// Specify the underlying name of the internal 128-bit floating-point type definition.
namespace boost { namespace math { namespace cstdfloat { namespace detail {
- #if defined(BOOST_INTEL)
- typedef _Quad float_internal128_t;
- #elif defined(__GNUC__)
- typedef __float128 float_internal128_t;
+ #if defined(__GNUC__)
+ typedef __float128 float_internal128_t;
+ #elif defined(BOOST_INTEL)
+ typedef _Quad float_internal128_t;
#else
#error "Sorry, the compiler is neither GCC, nor Intel, I don't know how to configure <boost/cstdfloat.hpp>."
#endif