2
0
mirror of https://gitlab.com/libeigen/eigen.git synced 2025-03-31 19:00:35 +08:00

Workaround VS 2017 arg bug.

In VS 2017, `std::arg` for real inputs always returns 0, even for
negative inputs.  It should return `PI` for negative real values.
This seems to be fixed in VS 2019 (MSVC 1920).
This commit is contained in:
Antonio Sanchez 2021-08-18 11:35:02 -07:00 committed by Rasmus Munk Larsen
parent 0c4ae56e37
commit 2b410ecbef

@ -572,7 +572,9 @@ struct rint_retval
* Implementation of arg *
****************************************************************************/
#if EIGEN_HAS_CXX11_MATH
// Visual Studio 2017 has a bug where arg(float) returns 0 for negative inputs.
// This seems to be fixed in VS 2019.
#if EIGEN_HAS_CXX11_MATH && (!EIGEN_COMP_MSVC || EIGEN_COMP_MSVC >= 1920)
// std::arg is only defined for types of std::complex, or integer types or float/double/long double
template<typename Scalar,
bool HasStdImpl = NumTraits<Scalar>::IsComplex || is_integral<Scalar>::value