File tree Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -4,33 +4,25 @@ <h1>Parallel exceptions</h1>
4
4
< h1 > Header < code > <experimental/exception_list></ code > synopsis</ h1 >
5
5
< pre >
6
6
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 {
12
9
class exception_list : public exception
13
10
{
14
11
public:
15
- < del > typedef < em > unspecified</ em > iterator;</ del >
16
- < ins > using iterator = < em > unspecified</ em > ;</ ins >
12
+ using iterator = < em > unspecified</ em > ;
17
13
18
14
size_t size() const noexcept;
19
15
iterator begin() const noexcept;
20
16
iterator end() const noexcept;
21
17
22
18
const char* what() const noexcept override;
23
19
};
24
- < del > }</ del >
25
20
}
26
21
}
27
- < del > }</ del >
28
22
</ pre >
29
23
30
24
< 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.
34
26
</ p >
35
27
36
28
< p >
You can’t perform that action at this time.
0 commit comments