| 230 | FunctionRegistry::~FunctionRegistry() {} |
| 231 | |
| 232 | Status FunctionRegistry::CanAddFunction(std::shared_ptr<Function> function, |
| 233 | bool allow_overwrite) { |
| 234 | return impl_->CanAddFunction(std::move(function), allow_overwrite); |
| 235 | } |
| 236 | |
| 237 | Status FunctionRegistry::AddFunction(std::shared_ptr<Function> function, |
| 238 | bool allow_overwrite) { |
no outgoing calls