Skip to content

Commit 54716ea

Browse files
committed
Eliminate [parallel.exceptions.synopsis]
1 parent b651ee4 commit 54716ea

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

exceptions.html

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,25 @@ <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>
11-
7+
namespace std::experimental {
8+
inline namespace parallelism_v2 {
129
class exception_list : public exception
1310
{
1411
public:
15-
<del>typedef <em>unspecified</em> iterator;</del>
16-
<ins>using iterator = <em>unspecified</em>;</ins>
12+
using iterator = <em>unspecified</em>;
1713

1814
size_t size() const noexcept;
1915
iterator begin() const noexcept;
2016
iterator end() const noexcept;
2117

2218
const char* what() const noexcept override;
2319
};
24-
<del>}</del>
2520
}
2621
}
27-
<del>}</del>
2822
</pre>
2923

3024
<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>
25+
The class <code>exception_list</code> owns a sequence of <code>exception_ptr</code> objects.
3426
</p>
3527

3628
<p>

0 commit comments

Comments
 (0)