Skip to content

Commit 5593593

Browse files
BillyONealtkoeppe
authored andcommitted
[thread.condvarany.intwait] Remove reference to nonexistent variable "cv". (#4115)
1 parent 0e14ea3 commit 5593593

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/threads.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5023,7 +5023,7 @@
50235023
while (!stoken.stop_requested()) {
50245024
if (pred())
50255025
return true;
5026-
if (cv.wait_until(lock, abs_time) == cv_status::timeout)
5026+
if (wait_until(lock, abs_time) == cv_status::timeout)
50275027
return pred();
50285028
}
50295029
return pred();

0 commit comments

Comments
 (0)