Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/core/lib/promise/poll.h
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,8 @@ void AbslStringify(Sink& sink, const Poll<absl::optional<T>>& poll) {

// Hack to get metadata printing
template <typename Sink, typename T, typename Deleter>
void AbslStringify(Sink& sink, const Poll<absl::optional<std::unique_ptr<T, Deleter>>>& poll) {
void AbslStringify(
Sink& sink, const Poll<absl::optional<std::unique_ptr<T, Deleter>>>& poll) {
if (poll.pending()) {
absl::Format(&sink, "<<pending>>");
return;
Expand All @@ -316,7 +317,6 @@ void AbslStringify(Sink& sink, const Poll<absl::optional<std::unique_ptr<T, Dele
}
}


} // namespace grpc_core

#endif // GRPC_SRC_CORE_LIB_PROMISE_POLL_H