Skip to content

Commit 2b77182

Browse files
committed
Put parens around \ref
Signed-off-by: Matthias Kretz <[email protected]>
1 parent 74eb68c commit 2b77182

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/simd.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
The data-parallel library consists of data-parallel types and operations on these types. A data-parallel type consists of elements of an underlying arithmetic type, called the \defn{element type}. The number of elements is a constant for each data-parallel type and called the \defn{width} of that type.
1616

1717
\pnum
18-
Throughout this Clause, the term \defn{data-parallel type} refers to all \defn{supported} \ref{parallel.simd.overview} specializations of the \tcode{simd} and \tcode{simd_mask} class templates. A \defn{data-parallel object} is an object of \term{data-parallel type}.
18+
Throughout this Clause, the term \defn{data-parallel type} refers to all \defn{supported} (\ref{parallel.simd.overview}) specializations of the \tcode{simd} and \tcode{simd_mask} class templates. A \defn{data-parallel object} is an object of \term{data-parallel type}.
1919

2020
\pnum
2121
An \defn{element-wise operation} applies a specified operation to the elements of one or more data-parallel objects. Each such application is unsequenced with respect to the others. A \defn{unary element-wise operation} is an element-wise operation that applies a unary operation to each element of a data-parallel object. A \defn{binary element-wise operation} is an element-wise operation that applies a binary operation to corresponding elements of two data-parallel objects.
@@ -470,8 +470,8 @@
470470

471471
\begin{codeblock}
472472
template<class M, class T> class const_where_expression {
473-
const M mask; // \expos
474-
T& data; // \expos
473+
const M mask; // \expos
474+
T& data; // \expos
475475

476476
public:
477477
const_where_expression(const const_where_expression&) = delete;

0 commit comments

Comments
 (0)