aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/IntegralConstant.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2017-01-17 10:29:33 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2017-01-17 10:29:33 +0100
commitedff32c2c2377ed02ec7af299fccc8ef09070d62 (patch)
treea57c731c73295f60643c78b25aa35e8c810733f7 /Eigen/src/Core/util/IntegralConstant.h
parent4989922be2708378b2438db5a843640ec468ce4c (diff)
Disambiguate the two versions of fix for doxygen
Diffstat (limited to 'Eigen/src/Core/util/IntegralConstant.h')
-rw-r--r--Eigen/src/Core/util/IntegralConstant.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Eigen/src/Core/util/IntegralConstant.h b/Eigen/src/Core/util/IntegralConstant.h
index 57538060c..7f99863a1 100644
--- a/Eigen/src/Core/util/IntegralConstant.h
+++ b/Eigen/src/Core/util/IntegralConstant.h
@@ -86,7 +86,7 @@ inline internal::variable_or_fixed<N> fix(T val) { return internal::variable_or_
#else // EIGEN_PARSED_BY_DOXYGEN
-/** \var fix
+/** \var fix<N>()
* \ingroup Core_Module
*
* This \em identifier permits to construct an object embedding a compile-time integer \c N.
@@ -116,12 +116,12 @@ inline internal::variable_or_fixed<N> fix(T val) { return internal::variable_or_
*
* If for some reason you want a true object in c++98 then you can write: \code fix<N>() \endcode which is also valid in c++14.
*
- * \sa fix(int), seq, seqN
+ * \sa fix<N>(int), seq, seqN
*/
template<int N>
-static const auto fix;
+static const auto fix();
-/** \fn fix(int)
+/** \fn fix<N>(int)
* \ingroup Core_Module
*
* This function returns an object embedding both a compile-time integer \c N, and a fallback runtime value \a val.