| 1315 | } |
| 1316 | |
| 1317 | Status FunctionLibraryDefinition::RemoveFunction(const string& func) { |
| 1318 | mutex_lock l(mu_); |
| 1319 | TF_RETURN_IF_ERROR(RemoveFunctionHelper(func)); |
| 1320 | return Status::OK(); |
| 1321 | } |
| 1322 | |
| 1323 | Status FunctionLibraryDefinition::RemoveFunctionHelper(const string& func) { |
| 1324 | const auto& i = function_defs_.find(func); |
no outgoing calls