From 17f740fc0dd95f41ff3a44a2e6ec9efc821ed35c Mon Sep 17 00:00:00 2001 From: ctiller <10120821+ctiller@users.noreply.github.com> Date: Sat, 7 Jun 2025 04:15:07 +0000 Subject: [PATCH] Automated change: Fix sanity tests --- src/core/channelz/channel_trace.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/channelz/channel_trace.h b/src/core/channelz/channel_trace.h index 88d88ec30186b..d5112e9979b7c 100644 --- a/src/core/channelz/channel_trace.h +++ b/src/core/channelz/channel_trace.h @@ -403,10 +403,10 @@ inline ChannelTrace::Node* LogOutputFrom(ChannelTrace::Node& n) { } // namespace channelz } // namespace grpc_core -#define GRPC_CHANNELZ_LOG(output) \ - for (auto* out = ::grpc_core::channelz::detail::LogOutputFrom(output); \ - out != nullptr; out = nullptr) \ - ::grpc_core::channelz::detail::LogExpr< \ +#define GRPC_CHANNELZ_LOG(output) \ + for (auto* out = grpc_core::channelz::detail::LogOutputFrom(output); \ + out != nullptr; out = nullptr) \ + grpc_core::channelz::detail::LogExpr< \ std::remove_reference_t>(out) #endif // GRPC_SRC_CORE_CHANNELZ_CHANNEL_TRACE_H