| 162 | } |
| 163 | |
| 164 | BOOST_NORETURN inline void throw_length_error(const char* str) |
| 165 | { |
| 166 | boost::ignore_unused(str); |
| 167 | BOOST_ASSERT_MSG(!"boost::container length_error thrown", str); |
| 168 | std::abort(); |
| 169 | } |
| 170 | |
| 171 | BOOST_NORETURN inline void throw_logic_error(const char* str) |
| 172 | { |
no test coverage detected