aboutsummaryrefslogtreecommitdiff
path: root/src/zenutil/workerpools.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2026-03-15 22:53:37 +0100
committerStefan Boberg <[email protected]>2026-03-15 22:53:37 +0100
commitda216166aab918bc93ee73040c1eb6336ea6d026 (patch)
tree87263e1e70d975c640981a50474290cdad1382cc /src/zenutil/workerpools.cpp
parentChange --noclean to --clean in toolchain verify script (diff)
parentMerge branch 'main' into sb/linux-build-improvements (diff)
downloadzen-sb/linux-build-improvements.tar.xz
zen-sb/linux-build-improvements.zip
Merge branch 'sb/linux-build-improvements' of ssh://arn-wd-l1704.localdomain:2222/ue-foundation/zen into sb/linux-build-improvementssb/linux-build-improvements
Diffstat (limited to 'src/zenutil/workerpools.cpp')
-rw-r--r--src/zenutil/workerpools.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zenutil/workerpools.cpp b/src/zenutil/workerpools.cpp
index 1bab39b2a..25f961f77 100644
--- a/src/zenutil/workerpools.cpp
+++ b/src/zenutil/workerpools.cpp
@@ -25,9 +25,9 @@ namespace {
struct WorkerPool
{
- std::unique_ptr<WorkerThreadPool> Pool;
const int TreadCount;
const std::string_view Name;
+ std::unique_ptr<WorkerThreadPool> Pool;
};
WorkerPool BurstLargeWorkerPool = {.TreadCount = LargeWorkerThreadPoolTreadCount, .Name = "large"};