File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -54,32 +54,33 @@ <h1>Exception reporting behavior</h1>
54
54
< h1 > Header < code > <experimental/exception_list></ code > synopsis</ h1 >
55
55
< pre >
56
56
57
- namespace std {
58
- namespace experimental {
59
- namespace parallel {
60
- inline namespace v2 {
57
+ < del > namespace std {</ del >
58
+ namespace < ins > std:: </ ins > experimental {
59
+ < ins > inline </ ins > namespace parallel< ins > ism_v2 </ ins > {
60
+ < del > inline namespace v2 {</ del >
61
61
62
62
class exception_list : public exception
63
63
{
64
64
public:
65
- typedef < em > unspecified</ em > iterator;
65
+ < del > typedef < em > unspecified</ em > iterator;</ del >
66
+ < ins > using iterator = < em > unspecified</ em > ;</ ins >
66
67
67
68
size_t size() const noexcept;
68
69
iterator begin() const noexcept;
69
70
iterator end() const noexcept;
70
71
71
72
const char* what() const noexcept override;
72
73
};
74
+ < del > }</ del >
73
75
}
74
76
}
75
- }
76
- }
77
+ < del > }</ del >
77
78
</ pre >
78
79
79
80
< p >
80
- The class < code > exception_list</ code > owns a sequence of < code > exception_ptr</ code > objects. The parallel
81
+ The class < code > exception_list</ code > owns a sequence of < code > exception_ptr</ code > objects.< del > The parallel
81
82
algorithms may use the < code > exception_list</ code > to communicate uncaught exceptions encountered during parallel execution to the
82
- caller of the algorithm.
83
+ caller of the algorithm.</ del >
83
84
</ p >
84
85
85
86
< p >
You can’t perform that action at this time.
0 commit comments