mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Rename isinf to isInf
This commit is contained in:
@@ -759,7 +759,7 @@ bool (isNaN)(const std::complex<T>& x)
|
||||
|
||||
template<typename T>
|
||||
EIGEN_DEVICE_FUNC
|
||||
bool (isinf)(const T& x)
|
||||
bool (isInf)(const T& x)
|
||||
{
|
||||
using std::isinf;
|
||||
return isinf(x);
|
||||
@@ -767,7 +767,7 @@ bool (isinf)(const T& x)
|
||||
|
||||
template<typename T>
|
||||
EIGEN_DEVICE_FUNC
|
||||
bool (isinf)(const std::complex<T>& x)
|
||||
bool (isInf)(const std::complex<T>& x)
|
||||
{
|
||||
using std::real;
|
||||
using std::imag;
|
||||
|
||||
Reference in New Issue
Block a user