Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/examples/flow_control' into exam…
Browse files Browse the repository at this point in the history
…ples/flow_control
  • Loading branch information
eugeneo committed Sep 3, 2024
2 parents 77c91c6 + 5f2928f commit ac01c86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/cpp/flow_control/client_flow_control_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ class GreeterClientReactor final

~GreeterClientReactor() override {
absl::MutexLock lock(&mu_);
mu_.Await(absl::Condition(+[](bool* done) { return *done; }, &done_));
mu_.Await(absl::Condition(
+[](bool* done) { return *done; }, &done_));
}

void OnWriteDone(bool ok) override {
Expand Down

0 comments on commit ac01c86

Please sign in to comment.