[gdbsupport] Fix type of parallel_for_each_debug
When I changed the initialization of parallel_for_each_debug from 0 to false, I forgot to change the type from int to bool. Fix this. Tested by rebuilding on x86_64-linux.
This commit is contained in:
parent
2fe9a3c41f
commit
9b89bf16c3
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ parallel_for_each (unsigned n, RandomIt first, RandomIt last,
|
|||
|
||||
/* If enabled, print debug info about how the work is distributed across
|
||||
the threads. */
|
||||
const int parallel_for_each_debug = false;
|
||||
const bool parallel_for_each_debug = false;
|
||||
|
||||
size_t n_worker_threads = thread_pool::g_thread_pool->thread_count ();
|
||||
size_t n_threads = n_worker_threads;
|
||||
|
|
Loading…
Add table
Reference in a new issue