| 35 | } |
| 36 | |
| 37 | BOOST_NOINLINE BOOST_SYMBOL_VISIBLE void in_test_rethrow_1(const char* msg) { |
| 38 | try { |
| 39 | in_test_throw_1(msg); |
| 40 | } catch (const std::exception&) { |
| 41 | throw; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | BOOST_NOINLINE BOOST_SYMBOL_VISIBLE void in_test_rethrow_2(const char* msg) { |
| 46 | try { |
no test coverage detected