Skip to content

Commit 5c467d4

Browse files
committed
Remove redlining from [parallel.alg.ops.synopsis]
1 parent 546b117 commit 5c467d4

File tree

1 file changed

+4
-23
lines changed

1 file changed

+4
-23
lines changed

algorithms.html

Lines changed: 4 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -107,25 +107,10 @@ <h1>Non-Numeric Parallel Algorithms</h1>
107107
<h1>Header <code>&lt;experimental/algorithm&gt;</code> synopsis</h1>
108108

109109
<pre>
110-
<ins>#include &lt;algorithm&gt;
111-
</ins>
112-
<del>namespace std {</del>
113-
namespace <ins>std::</ins>experimental {
114-
<ins>inline </ins>namespace parallel<ins>ism_v2</ins> {
115-
<del>inline namespace v2 {
116-
template&lt;class ExecutionPolicy,
117-
class InputIterator, class Function&gt;
118-
void for_each(ExecutionPolicy&amp;&amp; exec,
119-
InputIterator first, InputIterator last,
120-
Function f);
121-
template&lt;class InputIterator, class Size, class Function&gt;
122-
InputIterator for_each_n(InputIterator first, Size n,
123-
Function f);
124-
template&lt;class ExecutionPolicy,
125-
class InputIterator, class Size, class Function&gt;
126-
InputIterator for_each_n(ExecutionPolicy&amp;&amp; exec,
127-
InputIterator first, Size n,
128-
Function f);</del>
110+
#include &lt;algorithm&gt;
111+
112+
namespace std::experimental {
113+
inline namespace parallelism_v2 {
129114

130115
namespace execution {
131116
<cxx-ref insynopsis="" to="parallel.alg.novec"></cxx-ref>
@@ -140,7 +125,6 @@ <h1>Header <code>&lt;experimental/algorithm&gt;</code> synopsis</h1>
140125
template&lt;class T&gt;
141126
ordered_update_t&lt;T&gt; ordered_update(T&amp; ref) noexcept;
142127
}
143-
<ins>
144128

145129
// Exposition only: Suppress template argument deduction.
146130
template&lt;class T&gt; struct no_deduce { using type = T; };
@@ -197,11 +181,8 @@ <h1>Header <code>&lt;experimental/algorithm&gt;</code> synopsis</h1>
197181
class I, class Size, class S, class... Rest&gt;
198182
void for_loop_n_strided(ExecutionPolicy&amp;&amp; exec,
199183
I start, Size n, S stride, Rest&amp;&amp;... rest);
200-
</ins>
201-
<del>}</del>
202184
}
203185
}
204-
<del>}</del>
205186
</pre>
206187
</cxx-section>
207188

0 commit comments

Comments
 (0)