From 46686db07e89bb0df4af311b29e557e965e5f3b6 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Tue, 30 Sep 2025 02:12:04 -0400 Subject: [PATCH] SerializedAsyncContin: LockSet should take Qutex, not SpinLock Apparently this error was here the whole time and it flew under the radar. --- include/serializedAsynchronousContinuation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/serializedAsynchronousContinuation.h b/include/serializedAsynchronousContinuation.h index b877065..f7f5d4d 100644 --- a/include/serializedAsynchronousContinuation.h +++ b/include/serializedAsynchronousContinuation.h @@ -24,7 +24,7 @@ public: SerializedAsynchronousContinuation( const std::shared_ptr &caller, Callback originalCbFn, - std::vector> requiredLocks = {}) + std::vector> requiredLocks = {}) : PostedAsynchronousContinuation(caller, originalCbFn), requiredLocks(*this, std::move(requiredLocks)) {}