diff options
Diffstat (limited to 'absl/synchronization/mutex.h')
-rw-r--r-- | absl/synchronization/mutex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/synchronization/mutex.h b/absl/synchronization/mutex.h index 8343c9c8..bad37c59 100644 --- a/absl/synchronization/mutex.h +++ b/absl/synchronization/mutex.h @@ -598,7 +598,7 @@ class SCOPED_LOCKABLE WriterMutexLock { // // assume count_ is not internal reference count // int count_ GUARDED_BY(mu_); // -// mu_.LockWhen(Condition(+[](const int* count) { return *count == 0; }, +// mu_.LockWhen(Condition(+[](int* count) { return *count == 0; }, // &count_)); // // When multiple threads are waiting on exactly the same condition, make sure |