| 4069 | #endif |
| 4070 | |
| 4071 | [[noreturn]] |
| 4072 | void throw_logic_error(std::string const& msg) { |
| 4073 | throw_exception(std::logic_error(msg)); |
| 4074 | } |
| 4075 | |
| 4076 | [[noreturn]] |
| 4077 | void throw_domain_error(std::string const& msg) { |
nothing calls this directly
no test coverage detected