| 24 | namespace google::api::expr::runtime { |
| 25 | |
| 26 | absl::Status RegisterComparisonFunctions(CelFunctionRegistry* registry, |
| 27 | const InterpreterOptions& options) { |
| 28 | cel::RuntimeOptions modern_options = ConvertToRuntimeOptions(options); |
| 29 | cel::FunctionRegistry& modern_registry = registry->InternalGetRegistry(); |
| 30 | return cel::RegisterComparisonFunctions(modern_registry, modern_options); |
| 31 | } |
| 32 | |
| 33 | } // namespace google::api::expr::runtime |