diff --git a/src/core/lib/iomgr/executor.cc b/src/core/lib/iomgr/executor.cc index f271f17b101..5028b8597fa 100644 --- a/src/core/lib/iomgr/executor.cc +++ b/src/core/lib/iomgr/executor.cc @@ -77,9 +77,9 @@ void resolver_enqueue_long(grpc_closure* closure, grpc_error* error) { closure, error, false /* is_short */); } -using enqueue_func = void (*)(grpc_closure* closure, grpc_error* error); +using EnqueueFunc = void (*)(grpc_closure* closure, grpc_error* error); -const enqueue_func +const EnqueueFunc executor_enqueue_fns_[static_cast(ExecutorType::NUM_EXECUTORS)] [static_cast(ExecutorJobType::NUM_JOB_TYPES)] = {{default_enqueue_short, default_enqueue_long},