Skip to content

Commit 3f88656

Browse files
authored
[simd.mask.comparison] Add missing parameter names (#8262)
1 parent 82bf75b commit 3f88656

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/numerics.tex

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20436,17 +20436,17 @@
2043620436
\indexlibrarymember{operator>}{basic_mask}
2043720437
\begin{itemdecl}
2043820438
friend constexpr basic_mask
20439-
operator==(const basic_mask&, const basic_mask&) noexcept;
20439+
operator==(const basic_mask& lhs, const basic_mask& rhs) noexcept;
2044020440
friend constexpr basic_mask
20441-
operator!=(const basic_mask&, const basic_mask&) noexcept;
20441+
operator!=(const basic_mask& lhs, const basic_mask& rhs) noexcept;
2044220442
friend constexpr basic_mask
20443-
operator>=(const basic_mask&, const basic_mask&) noexcept;
20443+
operator>=(const basic_mask& lhs, const basic_mask& rhs) noexcept;
2044420444
friend constexpr basic_mask
20445-
operator<=(const basic_mask&, const basic_mask&) noexcept;
20445+
operator<=(const basic_mask& lhs, const basic_mask& rhs) noexcept;
2044620446
friend constexpr basic_mask
20447-
operator>(const basic_mask&, const basic_mask&) noexcept;
20447+
operator>(const basic_mask& lhs, const basic_mask& rhs) noexcept;
2044820448
friend constexpr basic_mask
20449-
operator<(const basic_mask&, const basic_mask&) noexcept;
20449+
operator<(const basic_mask& lhs, const basic_mask& rhs) noexcept;
2045020450
\end{itemdecl}
2045120451

2045220452
\begin{itemdescr}

0 commit comments

Comments
 (0)