Skip to content

Commit 8f5bbfa

Browse files
committed
Fix markup and duplication of "unspecified"
Signed-off-by: Matthias Kretz <[email protected]>
1 parent 66368d4 commit 8f5bbfa

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

src/algorithms.tex

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -118,27 +118,27 @@
118118

119119
// \ref{parallel.alg.reductions}, Support for reductions
120120
template<class T, class BinaryOperation>
121-
unspecified reduction(T& var, const T& identity, BinaryOperation combiner);
121+
@\unspec@ reduction(T& var, const T& identity, BinaryOperation combiner);
122122
template<class T>
123-
unspecified reduction_plus(T& var);
123+
@\unspec@ reduction_plus(T& var);
124124
template<class T>
125-
unspecified reduction_multiplies(T& var);
125+
@\unspec@ reduction_multiplies(T& var);
126126
template<class T>
127-
unspecified reduction_bit_and(T& var);
127+
@\unspec@ reduction_bit_and(T& var);
128128
template<class T>
129-
unspecified reduction_bit_or(T& var);
129+
@\unspec@ reduction_bit_or(T& var);
130130
template<class T>
131-
unspecified reduction_bit_xor(T& var);
131+
@\unspec@ reduction_bit_xor(T& var);
132132
template<class T>
133-
unspecified reduction_min(T& var);
133+
@\unspec@ reduction_min(T& var);
134134
template<class T>
135-
unspecified reduction_max(T& var);
135+
@\unspec@ reduction_max(T& var);
136136

137137
// \ref{parallel.alg.inductions}, Support for inductions
138138
template<class T>
139-
unspecified induction(T&& var);
139+
@\unspec@ induction(T&& var);
140140
template<class T, class S>
141-
unspecified induction(T&& var, S stride);
141+
@\unspec@ induction(T&& var, S stride);
142142

143143
// \ref{parallel.alg.forloop}, For loop
144144
template<class I, class... Rest>
@@ -219,19 +219,19 @@
219219

220220
\begin{itemdecl}
221221
template<class T>
222-
@\unspec@ unspecified reduction_plus(T& var);
222+
@\unspec@ reduction_plus(T& var);
223223
template<class T>
224-
@\unspec@ unspecified reduction_multiplies(T& var);
224+
@\unspec@ reduction_multiplies(T& var);
225225
template<class T>
226-
@\unspec@ unspecified reduction_bit_and(T& var);
226+
@\unspec@ reduction_bit_and(T& var);
227227
template<class T>
228-
@\unspec@ unspecified reduction_bit_or(T& var);
228+
@\unspec@ reduction_bit_or(T& var);
229229
template<class T>
230-
@\unspec@ unspecified reduction_bit_xor(T& var);
230+
@\unspec@ reduction_bit_xor(T& var);
231231
template<class T>
232-
@\unspec@ unspecified reduction_min(T& var);
232+
@\unspec@ reduction_min(T& var);
233233
template<class T>
234-
@\unspec@ unspecified reduction_max(T& var);
234+
@\unspec@ reduction_max(T& var);
235235
\end{itemdecl}
236236

237237
\begin{itemdescr}

0 commit comments

Comments
 (0)