We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37eece9 commit 02bb839Copy full SHA for 02bb839
src/core/lib/promise/race.h
@@ -69,7 +69,7 @@ class Race<Promise, Promises...> {
69
grpc_channelz_v2_Promise_mutable_race_promise(promise_proto, arena);
70
auto** children = grpc_channelz_v2_Promise_Race_resize_children(
71
race_promise, 1 + sizeof...(Promises), arena);
72
- for (int i = 0; i < 1 + sizeof...(Promises); ++i) {
+ for (size_t i = 0; i < 1 + sizeof...(Promises); ++i) {
73
children[i] = grpc_channelz_v2_Promise_new(arena);
74
}
75
SetChildrenProto(children, 0, arena);
0 commit comments