From e4332323f9fe3e579fcfabf5e1739d971e1c1a76 Mon Sep 17 00:00:00 2001 From: Hayodea Hekol Date: Thu, 5 Mar 2026 23:29:10 -0400 Subject: [PATCH] CompThr: Set keepLooping=false in ctor --- include/spinscale/componentThread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spinscale/componentThread.h b/include/spinscale/componentThread.h index 44da727..da45d71 100644 --- a/include/spinscale/componentThread.h +++ b/include/spinscale/componentThread.h @@ -34,7 +34,7 @@ class ComponentThread { protected: ComponentThread(ThreadId _id, std::string _name) - : id(_id), name(std::move(_name)), work(io_service) + : id(_id), name(std::move(_name)), work(io_service), keepLooping(true) {} public: