Fix signed/unsigned mismatch in VS

This commit is contained in:
LE GARREC Vincent
2021-06-13 14:17:47 +02:00
parent f2d1d573f5
commit ec8763adf2
4 changed files with 4 additions and 4 deletions

View File

@@ -46,7 +46,7 @@ struct async_factory_impl
auto tp = registry_inst.get_tp();
if (tp == nullptr)
{
tp = std::make_shared<details::thread_pool>(details::default_async_q_size, 1);
tp = std::make_shared<details::thread_pool>(details::default_async_q_size, 1U);
registry_inst.set_tp(tp);
}