From 6d72c769e52799a27b40d21da6b5302a07771882 Mon Sep 17 00:00:00 2001 From: CEL Dev Team Date: Wed, 29 Oct 2025 02:17:17 -0700 Subject: [PATCH] No public description PiperOrigin-RevId: 825444601 --- eval/public/cel_function_registry.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eval/public/cel_function_registry.cc b/eval/public/cel_function_registry.cc index 62cfbca2f..d96510ab6 100644 --- a/eval/public/cel_function_registry.cc +++ b/eval/public/cel_function_registry.cc @@ -89,7 +89,7 @@ std::vector CelFunctionRegistry::FindOverloads( results.reserve(matched_funcs.size()); { - absl::MutexLock lock(&mu_); + absl::MutexLock lock(mu_); for (cel::FunctionOverloadReference entry : matched_funcs) { std::unique_ptr& legacy_impl = functions_[&entry.implementation];