| 82 | } |
| 83 | |
| 84 | void report_error_code(const error_code& ec) |
| 85 | { |
| 86 | cout << " ec:\n" |
| 87 | << " value() is " << ec.value() << '\n' |
| 88 | << " category().name() is " << ec.category().name() << '\n' |
| 89 | << " message() is " << ec.message() << '\n'; |
| 90 | } |
| 91 | |
| 92 | bool threw_exception; |
| 93 |