| 10158 | #endif |
| 10159 | |
| 10160 | [[noreturn]] |
| 10161 | void throw_logic_error(std::string const& msg) { |
| 10162 | throw_exception(std::logic_error(msg)); |
| 10163 | } |
| 10164 | |
| 10165 | [[noreturn]] |
| 10166 | void throw_domain_error(std::string const& msg) { |
nothing calls this directly
no test coverage detected