From 339074c1b47b5072e6d28ca550e08d0a903adb7b Mon Sep 17 00:00:00 2001 From: Huamonarch Date: Sat, 9 May 2026 13:32:38 +0800 Subject: [PATCH] Remove comment from manager.cc --- eqpalg/threads/manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eqpalg/threads/manager.cc b/eqpalg/threads/manager.cc index b2e48cd..1eee91a 100644 --- a/eqpalg/threads/manager.cc +++ b/eqpalg/threads/manager.cc @@ -129,7 +129,7 @@ int Manager::start() { for (auto &x : this->handles_) { tid_2_thread_name_.push_back( std::make_tuple(x.second->run_thread(), - x.first)); //运行具体的算法线程 + x.first)); } } this->is_start_ = true;