| 10536 | #endif |
| 10537 | |
| 10538 | [[noreturn]] |
| 10539 | void throw_logic_error(std::string const& msg) { |
| 10540 | throw_exception(std::logic_error(msg)); |
| 10541 | } |
| 10542 | |
| 10543 | [[noreturn]] |
| 10544 | void throw_domain_error(std::string const& msg) { |
nothing calls this directly
no test coverage detected