summaryrefslogtreecommitdiff
path: root/engine/src/work_queue.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-09-22 18:22:46 +0200
committerHampusM <hampus@hampusmat.com>2026-09-22 18:22:46 +0200
commitc73ab25c9dbe40284cfd38beaf31e2a20a9810de (patch)
tree51c5817a0c252a172c03a47e36886e563a4e623d /engine/src/work_queue.rs
parent2ccda0cd5f81909fddc74d95f960f781a64bcae1 (diff)
refactor(engine): fix portion of clippy lints
Diffstat (limited to 'engine/src/work_queue.rs')
-rw-r--r--engine/src/work_queue.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/src/work_queue.rs b/engine/src/work_queue.rs
index 494d2b5..765aec3 100644
--- a/engine/src/work_queue.rs
+++ b/engine/src/work_queue.rs
@@ -32,7 +32,7 @@ impl<UserData: Send + Sync + 'static> WorkQueue<UserData>
Self {
work_sender,
- thread_panic: thread_panic,
+ thread_panic,
_thread: ThreadBuilder::new()
.name(name.to_string())
.spawn(move || {