Fix Doxygen build failure for comparison operator links

libeigen/eigen!2339

Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
This commit is contained in:
Rasmus Munk Larsen
2026-03-21 18:48:07 -07:00
parent a0e30732a7
commit f5774b014e
2 changed files with 12 additions and 14 deletions

View File

@@ -474,8 +474,8 @@ This also means that, unless specified, if the function \c std::foo is available
<tr>
<td class="code">
\anchor cwisetable_less
a \link ArrayBase::operator< operator< \endlink(b); \n
a \link ArrayBase::operator< operator< \endlink(s);
a.\c operator<(b); \n
a.\c operator<(s);
</td>
<td>coefficient-wise less than comparison (\f$ a_i \lt b_i \f$). \n
\c a and \c b can be either an array or scalar.</td>
@@ -487,8 +487,8 @@ This also means that, unless specified, if the function \c std::foo is available
<tr>
<td class="code">
\anchor cwisetable_less_equal
a \link ArrayBase::operator<= operator<= \endlink(b); \n
a \link ArrayBase::operator<= operator<= \endlink(s);
a.\c operator<=(b); \n
a.\c operator<=(s);
</td>
<td>coefficient-wise less than or equal comparison (\f$ a_i \le b_i \f$). \n
\c a and \c b can be either an array or scalar.</td>
@@ -500,8 +500,8 @@ This also means that, unless specified, if the function \c std::foo is available
<tr>
<td class="code">
\anchor cwisetable_greater
a \link ArrayBase::operator> operator> \endlink(b); \n
a \link ArrayBase::operator> operator> \endlink(s);
a.\c operator>(b); \n
a.\c operator>(s);
</td>
<td>coefficient-wise greater than comparison (\f$ a_i \gt b_i \f$). \n
\c a and \c b can be either an array or scalar.</td>
@@ -513,8 +513,8 @@ This also means that, unless specified, if the function \c std::foo is available
<tr>
<td class="code">
\anchor cwisetable_greater_equal
a \link ArrayBase::operator>= operator>= \endlink(b); \n
a \link ArrayBase::operator>= operator>= \endlink(s);
a.\c operator>=(b); \n
a.\c operator>=(s);
</td>
<td>coefficient-wise greater than or equal comparison (\f$ a_i \ge b_i \f$). \n
\c a and \c b can be either an array or scalar.</td>
@@ -526,8 +526,8 @@ This also means that, unless specified, if the function \c std::foo is available
<tr>
<td class="code">
\anchor cwisetable_equal
a \link ArrayBase::operator== operator== \endlink(b); \n
a \link ArrayBase::operator== operator== \endlink(s);
a.\c operator==(b); \n
a.\c operator==(s);
</td>
<td>coefficient-wise equality comparison (\f$ a_i = b_i \f$). \n
\c a and \c b can be either an array or scalar. \n
@@ -540,8 +540,8 @@ This also means that, unless specified, if the function \c std::foo is available
<tr>
<td class="code">
\anchor cwisetable_not_equal
a \link ArrayBase::operator!= operator!= \endlink(b); \n
a \link ArrayBase::operator!= operator!= \endlink(s);
a.\c operator!=(b); \n
a.\c operator!=(s);
</td>
<td>coefficient-wise not-equal comparison (\f$ a_i \ne b_i \f$). \n
\c a and \c b can be either an array or scalar. \n