1
0
mirror of https://github.com/gabime/spdlog.git synced 2025-03-15 02:29:54 +08:00

clang-format

This commit is contained in:
gabime 2020-03-22 00:16:27 +02:00
parent eb23d505f8
commit c927de137c
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ SPDLOG_INLINE thread_pool::thread_pool(size_t q_max_items, size_t threads_n, std
if (threads_n == 0 || threads_n > 1000) if (threads_n == 0 || threads_n > 1000)
{ {
throw_spdlog_ex("spdlog::thread_pool(): invalid threads_n param (valid " throw_spdlog_ex("spdlog::thread_pool(): invalid threads_n param (valid "
"range is 1-1000)"); "range is 1-1000)");
} }
for (size_t i = 0; i < threads_n; i++) for (size_t i = 0; i < threads_n; i++)
{ {