Rename isnan to isNaN

This commit is contained in:
Deanna Hood
2015-03-17 02:04:42 +10:00
parent f89fcefa79
commit fb68b149cb
7 changed files with 25 additions and 25 deletions

View File

@@ -741,7 +741,7 @@ bool (isfinite)(const std::complex<T>& x)
template<typename T>
EIGEN_DEVICE_FUNC
bool (isnan)(const T& x)
bool (isNaN)(const T& x)
{
using std::isnan;
return isnan(x);
@@ -749,7 +749,7 @@ bool (isnan)(const T& x)
template<typename T>
EIGEN_DEVICE_FUNC
bool (isnan)(const std::complex<T>& x)
bool (isNaN)(const std::complex<T>& x)
{
using std::real;
using std::imag;