From f76f2d1a12338ab2a18f144edcf4ababd3147ac8 Mon Sep 17 00:00:00 2001 From: Craig Edwards Date: Sat, 16 Nov 2024 18:03:09 +0000 Subject: [PATCH] terminating.notify_all is C++20 --- src/dpp/cluster.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/dpp/cluster.cpp b/src/dpp/cluster.cpp index 88605ce256..7daa0735fa 100644 --- a/src/dpp/cluster.cpp +++ b/src/dpp/cluster.cpp @@ -313,7 +313,6 @@ void cluster::start(bool return_after) { void cluster::shutdown() { /* Signal termination */ terminating = true; - terminating.notify_all(); /* Free memory for active timers */ for (auto & t : timer_list) { delete t.second;