CompThr: Set keepLooping=false in ctor

This commit is contained in:
2026-03-05 23:29:10 -04:00
parent 7eff7a6a9c
commit e4332323f9

View File

@@ -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: