We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27122a1 commit 5ecf429Copy full SHA for 5ecf429
2nd/003_exception/012_throw_with_nested.cpp
@@ -19,7 +19,7 @@ void print_nested_exception(exception_ptr e) {
19
try {
20
rethrow_if_nested(e);
21
}
22
- catch (...) {
+ catch (...) {
23
print_nested_exception(current_exception());
24
25
@@ -28,7 +28,7 @@ void print_nested_exception(exception_ptr e) {
28
29
30
31
32
33
34
@@ -39,7 +39,7 @@ int main() {
39
40
throw xxx();
41
42
43
throw_with_nested(yyy());
44
45
0 commit comments