fix: change typedef of on_all_threads_created_cb

This commit is contained in:
Jacky_Yin 2021-08-17 00:13:19 +08:00
parent 9653ae29bf
commit 4ee36dba67
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ struct thread_info {
pid_t pid;
};
typedef std::function<void(std::vector<std::shared_ptr<thread_info>>)>
typedef std::function<void(const std::vector<std::shared_ptr<thread_info>> &)>
on_all_threads_created_cb;
} // namespace asio_http2