| 51 | } |
| 52 | |
| 53 | extern "C" AclStatus AclDestroyOperator(AclOperator external_op) |
| 54 | { |
| 55 | using namespace arm_compute; |
| 56 | |
| 57 | auto op = get_internal(external_op); |
| 58 | |
| 59 | StatusCode status = detail::validate_internal_operator(op); |
| 60 | ARM_COMPUTE_RETURN_CENUM_ON_FAILURE(status); |
| 61 | |
| 62 | delete op; |
| 63 | |
| 64 | return AclSuccess; |
| 65 | } |
nothing calls this directly
no test coverage detected