This commit is contained in:
2025-10-04 14:11:25 -05:00
parent 9913d6f8b4
commit b0e790c5aa
2 changed files with 3 additions and 1 deletions

View File

@@ -70,7 +70,7 @@ private:
public:
pool() noexcept = default;
~pool() { shutdown(); }
~pool();
public:
pool(const pool &) = delete;

View File

@@ -95,6 +95,8 @@ void client_pool::pool::work_queue::work_thread() {
}
}
client_pool::pool::~pool() { shutdown(); }
void client_pool::pool::execute(std::uint64_t thread_id, worker_callback worker,
worker_complete_callback worker_complete) {
REPERTORY_USES_FUNCTION_NAME();