diff options
Diffstat (limited to 'third_party/nix/src/libutil/thread-pool.hh')
-rw-r--r-- | third_party/nix/src/libutil/thread-pool.hh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/third_party/nix/src/libutil/thread-pool.hh b/third_party/nix/src/libutil/thread-pool.hh index 114dae40eec9..72837ca1eecc 100644 --- a/third_party/nix/src/libutil/thread-pool.hh +++ b/third_party/nix/src/libutil/thread-pool.hh @@ -125,7 +125,9 @@ void processGraph(ThreadPool& pool, const std::set<T>& nodes, } }; - for (auto& node : nodes) pool.enqueue(std::bind(worker, std::ref(node))); + for (auto& node : nodes) { + pool.enqueue(std::bind(worker, std::ref(node))); + } pool.process(); |