clang-format

This commit is contained in:
gabime 2018-07-26 21:13:19 +03:00
parent 420b17ae65
commit fd54719351
2 changed files with 3 additions and 5 deletions

View File

@ -41,7 +41,7 @@ struct async_factory_impl
{
auto &registry_inst = details::registry::instance();
//create global thread pool if not already exists..
// create global thread pool if not already exists..
std::lock_guard<std::recursive_mutex>(registry_inst.tp_mutex());
auto tp = registry_inst.get_tp();
if (tp == nullptr)

View File

@ -72,7 +72,6 @@ public:
tp_ = std::move(tp);
}
std::shared_ptr<thread_pool> get_tp()
{
std::lock_guard<std::recursive_mutex> lock(tp_mutex_);
@ -184,7 +183,6 @@ public:
return s_instance;
}
private:
registry()
: formatter_(new pattern_formatter("%+"))