We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d59f7c7 commit f31a1b9Copy full SHA for f31a1b9
src/ThreadPool.h
@@ -26,7 +26,10 @@ struct ThreadPool {
26
27
for (size_t i = 0; i < numThreads; i++) {
28
std::string myName = name;
29
- if (numThreads != 1) myName += std::string(" ") + std::to_string(i);
+ if (numThreads != 1) {
30
+ myName += std::string(" ");
31
+ myName += std::to_string(i);
32
+ }
33
34
pool.emplace_back();
35
auto &t = pool.back();
0 commit comments