Applied clang-tidy fixes in util
This commit is contained in:
@@ -27,7 +27,12 @@ class thread_pool_executor {
|
||||
public:
|
||||
thread_pool_executor();
|
||||
|
||||
thread_pool_executor(unsigned int pool_size);
|
||||
thread_pool_executor(const thread_pool_executor &) = delete;
|
||||
thread_pool_executor(thread_pool_executor &&) = delete;
|
||||
thread_pool_executor &operator=(const thread_pool_executor &) = delete;
|
||||
thread_pool_executor &operator=(thread_pool_executor &&) = delete;
|
||||
|
||||
explicit thread_pool_executor(unsigned int pool_size);
|
||||
|
||||
~thread_pool_executor();
|
||||
|
||||
@@ -48,4 +53,4 @@ private:
|
||||
|
||||
std::vector<std::thread> threads_;
|
||||
};
|
||||
}
|
||||
} // namespace clanguml::util
|
||||
Reference in New Issue
Block a user