Skip to content

Commit f40f6fe

Browse files
committed
Flatten diffs in [parallel.alg.inductions]
1 parent 1b741ef commit f40f6fe

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

algorithms.html

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -305,9 +305,8 @@ <h1>Reductions</h1>
305305
</cxx-section>
306306

307307
<cxx-section id="parallel.alg.inductions">
308-
<h1><ins>Inductions</ins></h1>
308+
<h1>Inductions</h1>
309309

310-
<ins>
311310
<p>
312311
Each of the function templates in this section return an <em>induction object</em> of unspecified type having an <em>induction
313312
value type</em> and encapsulating an initial value <em>i</em> of that type and, optionally, a <em>stride</em>.
@@ -323,25 +322,20 @@ <h1><ins>Inductions</ins></h1>
323322
An induction object may refer to a <em>live-out</em> object to hold the final value of the induction sequence. When the algorithm using the induction
324323
object completes, the live-out object is assigned the value <em>i + n * stride</em>, where <em>n</em> is the number of elements in the input range.
325324
</p>
326-
</ins>
327325

328326
<cxx-function>
329-
<cxx-signature><ins>template&lt;class T&gt;
330-
<em>unspecified</em> induction(T&amp;&amp; var);</ins></cxx-signature>
327+
<cxx-signature>template&lt;class T&gt;
328+
<em>unspecified</em> induction(T&amp;&amp; var);</cxx-signature>
331329

332-
<cxx-signature><ins>template&lt;class T, class S&gt;
333-
<em>unspecified</em> induction(T&amp;&amp; var, S stride);</ins></cxx-signature>
330+
<cxx-signature>template&lt;class T, class S&gt;
331+
<em>unspecified</em> induction(T&amp;&amp; var, S stride);</cxx-signature>
334332

335-
<ins>
336333
<cxx-returns>
337-
<ins>
338334
an induction object with induction value type <code>remove_cv_t&gt;remove_reference_t&gt;T&lt;&lt;</code>,
339335
initial value <code>var</code>, and (if specified) stride <code>stride</code>. If <code>T</code> is an lvalue reference
340336
to non-<code>const</code> type, then the object referenced by <code>var</code> becomes the live-out object for the
341337
induction object; otherwise there is no live-out object.
342-
</ins>
343338
</cxx-returns>
344-
</ins>
345339
</cxx-function>
346340
</cxx-section>
347341

0 commit comments

Comments
 (0)