aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/plugins/ArrayCwiseUnaryOps.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2016-05-19 17:35:30 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2016-05-19 17:35:30 +0200
commitce12562710a0f342c4d88ed81b91199ea676a1a2 (patch)
treead0c1ea65bfdd71223ff205048445786bf5b28f0 /Eigen/src/plugins/ArrayCwiseUnaryOps.h
parentb6ed8244b463e98cb4b200e83555565320a634bc (diff)
Add some c++11 flags in documentation
Diffstat (limited to 'Eigen/src/plugins/ArrayCwiseUnaryOps.h')
-rw-r--r--Eigen/src/plugins/ArrayCwiseUnaryOps.h58
1 files changed, 29 insertions, 29 deletions
diff --git a/Eigen/src/plugins/ArrayCwiseUnaryOps.h b/Eigen/src/plugins/ArrayCwiseUnaryOps.h
index 56c71172c..bcebce54f 100644
--- a/Eigen/src/plugins/ArrayCwiseUnaryOps.h
+++ b/Eigen/src/plugins/ArrayCwiseUnaryOps.h
@@ -308,13 +308,13 @@ cosh() const
return CoshReturnType(derived());
}
-/** \returns an expression of the coefficient-wise ln(|gamma(*this)|).
- *
- * Example: \include Cwise_lgamma.cpp
- * Output: \verbinclude Cwise_lgamma.out
- *
- * \sa cos(), sin(), tan()
- */
+/** \cpp11 \returns an expression of the coefficient-wise ln(|gamma(*this)|).
+ *
+ * Example: \include Cwise_lgamma.cpp
+ * Output: \verbinclude Cwise_lgamma.out
+ *
+ * \sa cos(), sin(), tan()
+ */
inline const LgammaReturnType
lgamma() const
{
@@ -322,9 +322,9 @@ lgamma() const
}
/** \returns an expression of the coefficient-wise digamma (psi, derivative of lgamma).
- *
- * \sa cos(), sin(), tan()
- */
+ *
+ * \sa cos(), sin(), tan()
+ */
inline const DigammaReturnType
digamma() const
{
@@ -332,43 +332,43 @@ digamma() const
}
/** \returns an expression of the coefficient-wise zeta function.
- */
+ */
inline const ZetaReturnType
zeta() const
{
return ZetaReturnType(derived());
}
-/** \returns an expression of the coefficient-wise polygamma function.
- */
+/** \cpp11 \returns an expression of the coefficient-wise polygamma function.
+ */
inline const PolygammaReturnType
polygamma() const
{
return PolygammaReturnType(derived());
}
-/** \returns an expression of the coefficient-wise Gauss error
- * function of *this.
- *
- * Example: \include Cwise_erf.cpp
- * Output: \verbinclude Cwise_erf.out
- *
- * \sa cos(), sin(), tan()
- */
+/** \cpp11 \returns an expression of the coefficient-wise Gauss error
+ * function of *this.
+ *
+ * Example: \include Cwise_erf.cpp
+ * Output: \verbinclude Cwise_erf.out
+ *
+ * \sa cos(), sin(), tan()
+ */
inline const ErfReturnType
erf() const
{
return ErfReturnType(derived());
}
-/** \returns an expression of the coefficient-wise Complementary error
- * function of *this.
- *
- * Example: \include Cwise_erfc.cpp
- * Output: \verbinclude Cwise_erfc.out
- *
- * \sa cos(), sin(), tan()
- */
+/** \cpp11 \returns an expression of the coefficient-wise Complementary error
+ * function of *this.
+ *
+ * Example: \include Cwise_erfc.cpp
+ * Output: \verbinclude Cwise_erfc.out
+ *
+ * \sa cos(), sin(), tan()
+ */
inline const ErfcReturnType
erfc() const
{