aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2015-07-29 16:07:59 -0700
committerGravatar Vijay Pai <vpai@google.com>2015-07-29 16:07:59 -0700
commit339aaea50bc254edec870a3a170d4cc793fd123f (patch)
treec3dce29f1080de83c7b28c4851b12a699941638d /include
parent33b5bc293787f7c1bd99b25337bba97748acf751 (diff)
parent766d9ee14855c4fe345dd2f241ea646df3308f05 (diff)
Merge pull request #2711 from yang-g/missing_brace
fix build
Diffstat (limited to 'include')
-rw-r--r--include/grpc++/impl/sync_no_cxx11.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/grpc++/impl/sync_no_cxx11.h b/include/grpc++/impl/sync_no_cxx11.h
index fda668957e..5869b04c76 100644
--- a/include/grpc++/impl/sync_no_cxx11.h
+++ b/include/grpc++/impl/sync_no_cxx11.h
@@ -87,7 +87,7 @@ class condition_variable {
~condition_variable() { gpr_cv_destroy(&cv_); }
void wait(lock_guard<mutex> &mu) {
mu.locked = false;
- gpr_cv_wait(&cv_, &mu.mu_.mu_, gpr_inf_future(GPR_CLOCK_REALTIME);
+ gpr_cv_wait(&cv_, &mu.mu_.mu_, gpr_inf_future(GPR_CLOCK_REALTIME));
mu.locked = true;
}
void notify_one() { gpr_cv_signal(&cv_); }