| 172 | } |
| 173 | #if !defined(BOOST_ASIO_NO_EXCEPTIONS) |
| 174 | catch (...) |
| 175 | { |
| 176 | if (is_same<InlineExceptionHandling, |
| 177 | execution::inline_exception_handling_t::terminate_t>::value) |
| 178 | { |
| 179 | std::terminate(); |
| 180 | } |
| 181 | else |
| 182 | { |
| 183 | throw; |
| 184 | } |
| 185 | } |
| 186 | #endif // !defined(BOOST_ASIO_NO_EXCEPTIONS) |
| 187 | } |
| 188 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected