| 10412 | #endif |
| 10413 | |
| 10414 | [[noreturn]] |
| 10415 | void throw_logic_error(std::string const& msg) { |
| 10416 | throw_exception(std::logic_error(msg)); |
| 10417 | } |
| 10418 | |
| 10419 | [[noreturn]] |
| 10420 | void throw_domain_error(std::string const& msg) { |
nothing calls this directly
no test coverage detected