| 75 | } |
| 76 | |
| 77 | void report_error_code(const error_code& ec) |
| 78 | { |
| 79 | cout << " ec:\n" |
| 80 | << " value() is " << ec.value() << '\n' |
| 81 | << " category().name() is " << ec.category().name() << '\n' |
| 82 | << " message() is " << ec.message() << '\n' |
| 83 | ; |
| 84 | } |
| 85 | |
| 86 | bool threw_exception; |
| 87 |