2
0
mirror of https://github.com/boostorg/math.git synced 2026-02-25 16:32:15 +00:00

MSVC also uses 64-bit long doubles

This commit is contained in:
Matt Borland
2025-07-03 08:58:41 -04:00
parent 83d7b1a50d
commit 008a31c8ef

View File

@@ -270,7 +270,7 @@ template<> struct fp_traits_non_native<double, double_precision>
// long double (64 bits) -------------------------------------------------------
#if defined(BOOST_NO_INT64_T) || defined(BOOST_NO_INCLASS_MEMBER_INITIALIZATION)\
|| defined(BOOST_BORLANDC) || defined(__CODEGEAR__) || (defined(__APPLE__) && defined(__aarch64__))
|| defined(BOOST_BORLANDC) || defined(__CODEGEAR__) || (defined(__APPLE__) && defined(__aarch64__)) || defined(_MSC_VER)
template<> struct fp_traits_non_native<long double, double_precision>
{