aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/MathFunctions.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-10-08 09:30:15 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-10-08 09:30:15 +0200
commit774bb9d6f7a33e7d1890dd8e4c7bbe5a2bdbf03e (patch)
tree0d2a88775ac2153b751333d55c21cd38fad9747d /Eigen/src/Core/MathFunctions.h
parent6c3f6cd52b46c09aeddc60bf102b244c04bd7251 (diff)
fix a doxygen issue
Diffstat (limited to 'Eigen/src/Core/MathFunctions.h')
-rw-r--r--Eigen/src/Core/MathFunctions.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Eigen/src/Core/MathFunctions.h b/Eigen/src/Core/MathFunctions.h
index 72116e144..34dd15d85 100644
--- a/Eigen/src/Core/MathFunctions.h
+++ b/Eigen/src/Core/MathFunctions.h
@@ -1217,7 +1217,8 @@ inline int log2(int x)
/** \returns the square root of \a x.
*
- * It is essentially equivalent to \code using std::sqrt; return sqrt(x); \endcode,
+ * It is essentially equivalent to
+ * \code using std::sqrt; return sqrt(x); \endcode
* but slightly faster for float/double and some compilers (e.g., gcc), thanks to
* specializations when SSE is enabled.
*