| 506 | #if !defined(FU2_HAS_DISABLED_EXCEPTIONS) |
| 507 | #if defined(FU2_HAS_NO_FUNCTIONAL_HEADER) |
| 508 | struct bad_function_call : std::exception { |
| 509 | bad_function_call() noexcept { |
| 510 | } |
| 511 | |
| 512 | char const* what() const noexcept override { |
| 513 | return "bad function call"; |
| 514 | } |
| 515 | }; |
| 516 | #else |
| 517 | using std::bad_function_call; |
| 518 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected