| 45 | } |
| 46 | |
| 47 | void arm_compute::throw_error(Status err) |
| 48 | { |
| 49 | ARM_COMPUTE_THROW(std::runtime_error(err.error_description())); |
| 50 | } |
| 51 | void Status::internal_throw_on_error() const |
| 52 | { |
| 53 | ARM_COMPUTE_THROW(std::runtime_error(_error_description)); |
nothing calls this directly
no test coverage detected