aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/MathFunctions.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Core/MathFunctions.h')
-rw-r--r--Eigen/src/Core/MathFunctions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/MathFunctions.h b/Eigen/src/Core/MathFunctions.h
index fceb29e1a..36a6eb650 100644
--- a/Eigen/src/Core/MathFunctions.h
+++ b/Eigen/src/Core/MathFunctions.h
@@ -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;