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