| 81 | } |
| 82 | |
| 83 | void join_function(const TF_GrpcServer* server, void* context, |
| 84 | TF_Status* status) { |
| 85 | TF_SetStatus(status, TF_OK, ""); |
| 86 | } |
| 87 | |
| 88 | void delete_function(void* context) { |
| 89 | auto* server_data = static_cast<SomeServerData*>(context); |
nothing calls this directly
no test coverage detected