From 8996a61ba45825638764576fe524a4d420e9455e Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 17 Dec 2021 18:57:22 +0100 Subject: [PATCH] And one last fix. --- src/cpp11_thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp11_thread.cpp b/src/cpp11_thread.cpp index 071c013a1..914ee1728 100644 --- a/src/cpp11_thread.cpp +++ b/src/cpp11_thread.cpp @@ -122,7 +122,7 @@ thread_reset_event(event_t *handle) std::lock_guard lock(event->mutex); event->state = false; - // event->cond.notify_all(); + event->cond.notify_all(); } void