aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/plugins/ArrayCwiseUnaryOps.h
diff options
context:
space:
mode:
authorGravatar Deanna Hood <deanna.m.hood@gmail.com>2015-03-17 02:04:42 +1000
committerGravatar Deanna Hood <deanna.m.hood@gmail.com>2015-03-17 02:04:42 +1000
commitfb68b149cb499baf1007b0f0b8cf1784eed185fe (patch)
tree45669839a276d5069510532a60bc87e5e8ec3f1d /Eigen/src/plugins/ArrayCwiseUnaryOps.h
parentf89fcefa79382f5a93c38927b79f40973b2e71f2 (diff)
Rename isnan to isNaN
Diffstat (limited to 'Eigen/src/plugins/ArrayCwiseUnaryOps.h')
-rw-r--r--Eigen/src/plugins/ArrayCwiseUnaryOps.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/Eigen/src/plugins/ArrayCwiseUnaryOps.h b/Eigen/src/plugins/ArrayCwiseUnaryOps.h
index 032f5c31c..5e5c8a857 100644
--- a/Eigen/src/plugins/ArrayCwiseUnaryOps.h
+++ b/Eigen/src/plugins/ArrayCwiseUnaryOps.h
@@ -24,7 +24,7 @@ typedef CwiseUnaryOp<internal::scalar_cube_op<Scalar>, const Derived> CubeReturn
typedef CwiseUnaryOp<internal::scalar_round_op<Scalar>, const Derived> RoundReturnType;
typedef CwiseUnaryOp<internal::scalar_floor_op<Scalar>, const Derived> FloorReturnType;
typedef CwiseUnaryOp<internal::scalar_ceil_op<Scalar>, const Derived> CeilReturnType;
-typedef CwiseUnaryOp<internal::scalar_isnan_op<Scalar>, const Derived> IsnanReturnType;
+typedef CwiseUnaryOp<internal::scalar_isNaN_op<Scalar>, const Derived> IsNaNReturnType;
typedef CwiseUnaryOp<internal::scalar_isinf_op<Scalar>, const Derived> IsinfReturnType;
/** \returns an expression of the coefficient-wise absolute value of \c *this
@@ -364,17 +364,17 @@ ceil() const
return CeilReturnType(derived());
}
-/** \returns an expression of the coefficient-wise isnan of *this.
+/** \returns an expression of the coefficient-wise isNaN of *this.
*
- * Example: \include Cwise_isnan.cpp
- * Output: \verbinclude Cwise_isnan.out
+ * Example: \include Cwise_isNaN.cpp
+ * Output: \verbinclude Cwise_isNaN.out
*
* \sa isinf()
*/
-inline const IsnanReturnType
-isnan() const
+inline const IsNaNReturnType
+isNaN() const
{
- return IsnanReturnType(derived());
+ return IsNaNReturnType(derived());
}
/** \returns an expression of the coefficient-wise isinf of *this.
@@ -382,7 +382,7 @@ isnan() const
* Example: \include Cwise_isinf.cpp
* Output: \verbinclude Cwise_isinf.out
*
- * \sa isnan()
+ * \sa isNaN()
*/
inline const IsinfReturnType
isinf() const