| 8 | // Standard library exception class for allocation failures |
| 9 | struct bad_alloc { |
| 10 | const char* what() const noexcept { |
| 11 | return "bad allocation"; |
| 12 | } |
| 13 | }; |
| 14 | |
| 15 | // nothrow_t |
nothing calls this directly
no outgoing calls
no test coverage detected