Skip to content

Commit

Permalink
Automated change: Fix sanity tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneo committed Sep 3, 2024
1 parent ac01c86 commit 0b9118c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/cpp/flow_control/client_flow_control_client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ 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 0b9118c

Please sign in to comment.