| 12 | } |
| 13 | |
| 14 | void Work(std::exception_ptr& ptr) |
| 15 | { |
| 16 | try { |
| 17 | PKUStudent(); |
| 18 | THUStudent(); |
| 19 | } |
| 20 | catch (const std::runtime_error&) { |
| 21 | ptr = std::current_exception(); |
| 22 | } |
| 23 | return; |
| 24 | } |
| 25 | |
| 26 | void Watch() |
| 27 | { |
nothing calls this directly
no test coverage detected