Skip to content

Commit 6f2c996

Browse files
committed
resolve error found by stricter compiler on MacOS 15
1 parent dcb39f7 commit 6f2c996

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

patches/grpc-mac.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,15 @@ index 0627429f49..60a86853ba 100644
118118

119119
if(gRPC_INSTALL)
120120
diff --git a/src/core/lib/promise/detail/basic_seq.h b/src/core/lib/promise/detail/basic_seq.h
121-
index 663609d419..226e8579ca 100644
121+
index 663609d419..d5e56019e3 100644
122122
--- a/src/core/lib/promise/detail/basic_seq.h
123123
+++ b/src/core/lib/promise/detail/basic_seq.h
124124
@@ -100,7 +100,7 @@ class BasicSeqIter {
125125
cur_ = next;
126126
state_.~State();
127127
Construct(&state_,
128128
- Traits::template CallSeqFactory(f_, *cur_, std::move(arg)));
129-
+ Traits::template CallSeqFactory<>(f_, *cur_, std::move(arg)));
129+
+ Traits::template CallSeqFactory<>(f_, *cur_, std::move(arg))); // add angle brackets to avoid compiler error on MacOS 15
130130
return PollNonEmpty();
131131
});
132132
}

0 commit comments

Comments
 (0)