Skip to content

Commit 00de6b6

Browse files
committed
Remove redlining from [parallel.exceptions.synopsis]
1 parent f732c3f commit 00de6b6

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

exceptions.html

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,26 @@ <h1>Parallel exceptions</h1>
44
<h1>Header <code>&lt;experimental/exception_list&gt;</code> synopsis</h1>
55
<pre>
66

7-
<del>namespace std {</del>
8-
namespace <ins>std::</ins>experimental {
9-
<ins>inline </ins>namespace parallel<ins>ism_v2</ins> {
10-
<del>inline namespace v2 {</del>
7+
namespace std::experimental {
8+
inline namespace parallelism_v2 {
119

1210
class exception_list : public exception
1311
{
1412
public:
15-
<del>typedef <em>unspecified</em> iterator;</del>
16-
<ins>using iterator = <em>unspecified</em>;</ins>
13+
using iterator = <em>unspecified</em>;
1714

1815
size_t size() const noexcept;
1916
iterator begin() const noexcept;
2017
iterator end() const noexcept;
2118

2219
const char* what() const noexcept override;
2320
};
24-
<del>}</del>
2521
}
2622
}
27-
<del>}</del>
2823
</pre>
2924

3025
<p>
31-
The class <code>exception_list</code> owns a sequence of <code>exception_ptr</code> objects.<del> The parallel
32-
algorithms may use the <code>exception_list</code> to communicate uncaught exceptions encountered during parallel execution to the
33-
caller of the algorithm.</del>
26+
The class <code>exception_list</code> owns a sequence of <code>exception_ptr</code> objects.
3427
</p>
3528

3629
<p>

0 commit comments

Comments
 (0)